mirror of
https://github.com/stefanberger/libtpms
synced 2025-12-30 18:31:53 +00:00
This patch fixes the following issue pointed out in issue #212: dh clean --parallel --with autotools-dev --with autoreconf dh: warning: Compatibility levels before 10 are deprecated (level 9 in use) dh: warning: The autotools-dev sequence is deprecated and replaced by dh in debhelper (>= 9.20160115) dh: warning: This feature will be removed in compat 12. dh_auto_clean -O--parallel dh_auto_clean: warning: Compatibility levels before 10 are deprecated (level 9 in use) make -j4 distclean Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
15 lines
282 B
Makefile
Executable File
15 lines
282 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# export DH_VERBOSE=1
|
|
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
%:
|
|
dh_update_autotools_config
|
|
dh $@ --parallel --with autoreconf
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- --with-openssl --with-tpm2
|
|
|
|
override_dh_usrlocal:
|