mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-05 11:39:24 +01:00
19 lines
350 B
Bash
Executable File
19 lines
350 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f config.status ]; then
|
|
make maintainer-clean
|
|
fi
|
|
|
|
./bootstrap && \
|
|
./configure --enable-maintainer-mode \
|
|
--enable-debug \
|
|
--prefix=/usr \
|
|
--localstatedir=/var \
|
|
--enable-wired \
|
|
--enable-hwsim \
|
|
--enable-tools \
|
|
--enable-ofono \
|
|
--enable-sim-hardcoded \
|
|
--disable-dbus-policy \
|
|
--disable-systemd-service $*
|