[Glibc-bsd-commits] r3016 - trunk/freebsd-buildutils/debian

Aurelien Jarno aurel32 at alioth.debian.org
Sat Apr 10 14:48:47 UTC 2010


Author: aurel32
Date: 2010-04-10 14:48:46 +0000 (Sat, 10 Apr 2010)
New Revision: 3016

Modified:
   trunk/freebsd-buildutils/debian/changelog
   trunk/freebsd-buildutils/debian/rules
Log:
  * Handle nostrip build options (Closes: #436857).



Modified: trunk/freebsd-buildutils/debian/changelog
===================================================================
--- trunk/freebsd-buildutils/debian/changelog	2010-04-10 14:42:24 UTC (rev 3015)
+++ trunk/freebsd-buildutils/debian/changelog	2010-04-10 14:48:46 UTC (rev 3016)
@@ -6,8 +6,9 @@
   * Remove depends on dash, it is now essential. 
   * Add depends on ${misc:Depends}.
   * Bumped Standard-Versions to 3.8.4 (no changes).
+  * Handle nostrip build options (Closes: #436857).
 
- -- Aurelien Jarno <aurel32 at debian.org>  Sat, 10 Apr 2010 16:42:05 +0200
+ -- Aurelien Jarno <aurel32 at debian.org>  Sat, 10 Apr 2010 16:48:36 +0200
 
 freebsd-buildutils (7.2-1) unstable; urgency=low
 

Modified: trunk/freebsd-buildutils/debian/rules
===================================================================
--- trunk/freebsd-buildutils/debian/rules	2010-04-10 14:42:24 UTC (rev 3015)
+++ trunk/freebsd-buildutils/debian/rules	2010-04-10 14:48:46 UTC (rev 3016)
@@ -11,6 +11,10 @@
 DEB_BUILD_GNU_CPU	:= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
 DEB_HOST_ARCH_CPU	:= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
 
+ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
+    export STRIPFLAG=
+endif
+
 VERSION=$(shell dpkg-parsechangelog | sed -e '/^Version:/!d' -e 's/^Version: //g' -e 's/-.*//g')
 SVN=svn://svn.freebsd.org/base/release/$(VERSION).0
 ORIGDIR=freebsd-buildutils-$(VERSION)




More information about the Glibc-bsd-commits mailing list