[Gpg4win-commits] r53 - in trunk: . src

scm-commit at wald.intevation.org scm-commit at wald.intevation.org
Tue Nov 8 19:44:01 CET 2005


Author: werner
Date: 2005-11-08 19:44:01 +0100 (Tue, 08 Nov 2005)
New Revision: 53

Modified:
   trunk/ChangeLog
   trunk/src/gpg4win.mk.in
Log:
strip dlls


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2005-11-08 12:55:50 UTC (rev 52)
+++ trunk/ChangeLog	2005-11-08 18:44:01 UTC (rev 53)
@@ -1,5 +1,8 @@
 2005-11-08  Werner Koch  <wk at g10code.com>
 
+	* src/gpg4win.mk.in: Also strip DLLs; I am using stripped DLLs for
+	months now.
+
 	Released 0.0.2.
 
 	* src/installer.nsi (T_WelcomeTitle): New.

Modified: trunk/src/gpg4win.mk.in
===================================================================
--- trunk/src/gpg4win.mk.in	2005-11-08 12:55:50 UTC (rev 52)
+++ trunk/src/gpg4win.mk.in	2005-11-08 18:44:01 UTC (rev 53)
@@ -1,4 +1,4 @@
-# gpg4win.m4 - Installer for GnuPG 4 Windows Makefile.
+# gpg4win.m4.in - Installer for GnuPG 4 Windows Makefile.   -*- makefile -*-
 # Copyright (C) 2005 g10 Code GmbH
 # 
 # This file is part of GPG4Win.
@@ -80,12 +80,10 @@
 endef
 
 # 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 \*.exe`; do		\
+	   for f in `find . -name \*.exe -o -name \*.dll`; do		\
 	   echo Calling $(STRIP) "$$$${pkg_version}/$$$${f}"; \
 	   $(STRIP) "$$$${f}"; done);			\
 	fi



More information about the Gpg4win-commits mailing list