diff options
author | Daniel Salzman <daniel.salzman@nic.cz> | 2023-09-14 12:38:22 +0200 |
---|---|---|
committer | Daniel Salzman <daniel.salzman@nic.cz> | 2023-09-14 12:45:43 +0200 |
commit | 79db756fef4e08dd05ef85c0da7cb520195cea10 (patch) | |
tree | 41cc3fd0a5af577bbaf73174763c248766245cf7 /distro | |
parent | distro/deb: remove "${shlibs:Depends}" from libknot-dev Depends (diff) | |
download | knot-79db756fef4e08dd05ef85c0da7cb520195cea10.tar.xz knot-79db756fef4e08dd05ef85c0da7cb520195cea10.zip |
distro/deb: remove redundant and move exclude from general to specific command
Diffstat (limited to 'distro')
-rwxr-xr-x | distro/pkg/deb/rules | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/distro/pkg/deb/rules b/distro/pkg/deb/rules index 82cc34b99..c5c81d0fb 100755 --- a/distro/pkg/deb/rules +++ b/distro/pkg/deb/rules @@ -36,11 +36,9 @@ BASE_VERSION := $(shell echo $(DEB_VERSION) | sed 's/^\([^.]\+\.[^.]\+\).*/\1/') # invocation due to bug in dh-python's plugin_pyproject.py wheel unpack export PYBUILD_SYSTEM = distutils - %: dh $@ \ - --exclude=.la --exclude=example.com.zone \ - --with python3 + --with python3 override_dh_auto_configure: dh_auto_configure -- \ @@ -95,7 +93,7 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) endif override_dh_missing: - dh_missing --fail-missing + dh_missing --exclude=.la --fail-missing override_dh_installchangelogs: dh_installchangelogs NEWS |