mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-18 01:34:31 +08:00
21 lines
400 B
Bash
Executable File
21 lines
400 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 \
|
|
--libexecdir=/lib \
|
|
--enable-all \
|
|
--disable-manpages \
|
|
--disable-configfiles \
|
|
--disable-initscripts \
|
|
--disable-pcmciarules \
|
|
--disable-cups $*
|