diff options
author | Yves-Alexis Perez <corsac@debian.org> | 2015-11-04 13:45:49 +0100 |
---|---|---|
committer | Yves-Alexis Perez <corsac@debian.org> | 2015-11-04 13:51:56 +0100 |
commit | 6b1b9b019548f2f3e43a8e61fb01f38c686d6d88 (patch) | |
tree | c5b96951e172d715539d8549fe3345ffff7fbe25 | |
parent | 4a444578f596a66614fd4f01ff6bbd9063bf2564 (diff) | |
download | vyos-strongswan-6b1b9b019548f2f3e43a8e61fb01f38c686d6d88.tar.gz vyos-strongswan-6b1b9b019548f2f3e43a8e61fb01f38c686d6d88.zip |
Make dh_install override arch-dependent
* debian/rules:
- make the dh_install override arch-dependent only since it only acts on
arch:any packages.
-rw-r--r-- | debian/changelog | 8 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index d3041c4cb..7c0dc5898 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +strongswan (5.3.3-2) UNRELEASED; urgency=medium + + * debian/rules: + - make the dh_install override arch-dependent only since it only acts on + arch:any packages, fix FTBFS on arch:all. + + -- Yves-Alexis Perez <corsac@debian.org> Wed, 04 Nov 2015 13:45:06 +0100 + strongswan (5.3.3-1) unstable; urgency=medium * debian/rules: diff --git a/debian/rules b/debian/rules index 3edd62449..d0095fe0e 100755 --- a/debian/rules +++ b/debian/rules @@ -82,7 +82,7 @@ override_dh_auto_clean: debconf-updatepo -override_dh_install: +override_dh_install-arch: # first special cases ifeq ($(DEB_BUILD_ARCH_OS),linux) |