changeset 66654:a40925b52cdc

(GZIP_PROG): Renamed from GZIP. (install-arch-indep): Adjust.
author Andreas Schwab <schwab@suse.de>
date Thu, 03 Nov 2005 17:00:25 +0000
parents 181e78d8e616
children a549a8898210
files Makefile.in
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Thu Nov 03 17:00:04 2005 +0000
+++ b/Makefile.in	Thu Nov 03 17:00:25 2005 +0000
@@ -224,7 +224,7 @@
 INSTALL_STRIP =
 
 # We use gzip to compress installed .el files.
-GZIP = @GZIP@
+GZIP_PROG = @GZIP_PROG@
 
 # ============================= Targets ==============================
 
@@ -478,11 +478,11 @@
 	   (cd ${lispdir}; find . -exec chown $${LOGNAME:-$$USERNAME} {} ';') ; \
 	else true; fi
 	-unset CDPATH; \
-	if [ -n "${GZIP}" ]; \
+	if [ -n "${GZIP_PROG}" ]; \
 	then \
 	   echo "Compressing *.el ..." ; \
 	   (cd ${lispdir}; for f in `find . -name "*.elc" -print`; do \
-		${GZIP} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
+		${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
 	    done) \
 	else true; fi
 	-unset CDPATH; \