mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 19:04:35 +00:00

Remove the CUSE TPM from the build and adjust the rules file so that the build works on Ubuntu servers for example. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
14 lines
284 B
Makefile
Executable File
14 lines
284 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --parallel
|
|
|
|
override_dh_auto_configure:
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
dh_auto_configure -- --with-openssl --with-gnutls --without-cuse
|
|
|
|
override_dh_usrlocal:
|
|
|
|
override_dh_auto_test:
|
|
SWTPM_TEST_SECCOMP_OPT="--seccomp action=none" make -j4 check VERBOSE=1
|