mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-15 08:14:28 +08:00
16 lines
291 B
Bash
Executable File
16 lines
291 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f config.status ]; then
|
|
make maintainer-clean
|
|
fi
|
|
|
|
./bootstrap && \
|
|
./configure --enable-maintainer-mode \
|
|
--enable-debug \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--enable-experimental \
|
|
--disable-datafiles $*
|