diff options
author | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2010-09-19 20:08:41 +0000 |
---|---|---|
committer | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2010-09-19 20:08:41 +0000 |
commit | 7d33b88c6c56f6c9979ea27a460ab02da4512fbe (patch) | |
tree | c59491c6ee62680bbb3f6c9be478404822d9b9c8 | |
parent | 021a4433cf5e3e68a8b4239a2a51d5411bbd8b62 (diff) | |
download | vyos-strongswan-7d33b88c6c56f6c9979ea27a460ab02da4512fbe.tar.gz vyos-strongswan-7d33b88c6c56f6c9979ea27a460ab02da4512fbe.zip |
Argh, very stupid mistake. Don't call dh_clean from install target.
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | debian/rules | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 0d41eed52..40109b941 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ strongswan (4.4.1-4) unstable; urgency=medium - * Rebuild package to get strongswan meta package into the archive. + * dh_clean should not be called by the install target. This caused the + arch: all package strongswan to be built but not included in the changes + file. Closes: #593768: strongswan: 4.4.1 unavailable in testing notwhistanding a freeze-exception request * Rewrote parts of the init.d script to make stop/restart more robust diff --git a/debian/rules b/debian/rules index 48182c7db..e2c7f00a9 100755 --- a/debian/rules +++ b/debian/rules @@ -77,7 +77,6 @@ clean: install: build-stamp dh_testdir dh_testroot - dh_clean dh_installdirs $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp |