[Gpg4win-commits] r30 - trunk/src

marcus at wald.intevation.org marcus at wald.intevation.org
Fri Oct 21 13:12:10 CEST 2005


Author: marcus
Date: 2005-10-21 13:12:10 +0200 (Fri, 21 Oct 2005)
New Revision: 30

Modified:
   trunk/src/gpg4win.mk.in
Log:
2005-10-21  Marcus Brinkmann  <marcus at g10code.de>

	* src/gpg4win.mk.in (pdir): Don't strip DLL files.


Modified: trunk/src/gpg4win.mk.in
===================================================================
--- trunk/src/gpg4win.mk.in	2005-10-21 11:11:50 UTC (rev 29)
+++ trunk/src/gpg4win.mk.in	2005-10-21 11:12:10 UTC (rev 30)
@@ -79,12 +79,13 @@
 	esac
 endef
 
-# Support macro.  Strip all dll and exe files below $(1).
+# Support macro.  Strip all exe files below $(1).
+# We can't strip dll files: Neither --strip-unneeded nor --strip-debug
+# works correctly on this target.
 define STRIP_macro
 	if test -z '$(DEBUG)'; then			\
 	  (cd $(1);					\
-	   for f in `find . -name \*.dll		\
-		  -o -name \*.exe`; do			\
+	   for f in `find . -name \*.exe`; do		\
 	   echo Calling $(STRIP) "$$$${pkg_version}/$$$${f}"; \
 	   $(STRIP) "$$$${f}"; done);			\
 	fi



More information about the Gpg4win-commits mailing list