mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 01:45:32 +00:00
Lintian complained "missing-build-dependency-for-dh-addon" which I'm not entirely sure is correct. However, there is an easy workaround by removing an unnecessary parameter.
14 lines
231 B
Makefile
Executable file
14 lines
231 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
--libexecdir=/usr/libexec
|
|
|
|
override_dh_auto_test:
|
|
# run test but disable failing
|
|
-dh_auto_test
|