blob: a55477a514e79a812b966a235f81cb5201fb1d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/make -f
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
-D SOVERSION=$(shell dpkg-parsechangelog | sed -rne 's/^Version: 0\.0\.([0-9]+).*$$/\1/p') \
-D NL80211_SUPPORT=OFF \
-D RTNL_SUPPORT=OFF \
-D UBUS_SUPPORT=OFF \
-D UCI_SUPPORT=OFF \
-D ULOOP_SUPPORT=OFF
|