mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 10:30:52 +00:00

- Move content of swtpm-localca(8) manual page to swtpm_localca(8) and make swtpm-localca(8) an alias for swtpm_localca(8), mirroring the fact that /usr/bin/swtpm_localca is the actual program and /usr/share/swtpm/swtpm-localca a wrapper for it. - Change references to `swtpm-localca` in manual pages' content to `swtpm_localca`, reflecting the actual name of the program they are meant to document. Signed-off-by: Nick Chevsky <nchevsky@users.noreply.github.com>
18 lines
368 B
Makefile
Executable File
18 lines
368 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
dh_auto_configure -- --with-openssl --with-gnutls --without-cuse
|
|
|
|
override_dh_auto_test:
|
|
SWTPM_TEST_SECCOMP_OPT="--seccomp action=none" make -j4 check VERBOSE=1
|
|
|
|
override_dh_clean:
|
|
dh_clean --exclude=man/man8/swtpm-localca.8
|
|
|
|
override_dh_makeshlibs:
|
|
dh_makeshlibs --no-scripts
|