[Pkg-gnupg-commit] r34 - in /gnupg/trunk/debian: changelog rules
pusling-guest at users.alioth.debian.org
pusling-guest at users.alioth.debian.org
Tue Jun 3 22:05:32 UTC 2008
Author: pusling-guest
Date: Tue Jun 3 22:05:32 2008
New Revision: 34
URL: http://svn.debian.org/wsvn/pkg-gnupg/?sc=1&rev=34
Log:
Handle DEB_BUILD_OPTIONS=nostrip in debian/rules (Closes: #437050)
Modified:
gnupg/trunk/debian/changelog
gnupg/trunk/debian/rules
Modified: gnupg/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnupg/gnupg/trunk/debian/changelog?rev=34&op=diff
==============================================================================
--- gnupg/trunk/debian/changelog (original)
+++ gnupg/trunk/debian/changelog Tue Jun 3 22:05:32 2008
@@ -22,6 +22,7 @@
viewers (Closes: #381419).
* No need to clean up in builddir before removing builddir
* if rm -rf fails, we should also fail
+ * Handle DEB_BUILD_OPTIONS=nostrip in debian/rules (Closes: #437050)
-- Sune Vuorela <debian at pusling.com> Sun, 01 Jun 2008 21:21:10 +0200
Modified: gnupg/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnupg/gnupg/trunk/debian/rules?rev=34&op=diff
==============================================================================
--- gnupg/trunk/debian/rules (original)
+++ gnupg/trunk/debian/rules Tue Jun 3 22:05:32 2008
@@ -22,7 +22,11 @@
install_dir=install -d -m 755
install_file=install -m 644
install_script=install -m 755
-install_binary=install -m 755 -s
+install_binary=install -m 755
+
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+ install_binary += -s
+endif
VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
More information about the Pkg-gnupg-commit
mailing list