blob: d818e340f548670fc5288c862a4497731119c4bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/make -f
export deb_systemdsystemunitdir=$(shell pkg-config --variable=systemdsystemunitdir systemd)
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
--enable-pie \
--with-snmp \
--with-xml \
--with-systemdsystemunitdir=$(deb_systemdsystemunitdir)
|