# HG changeset patch # User Andreas Schwab # Date 1131037225 0 # Node ID a40925b52cdcd971306fdffde1ddb9093093a300 # Parent 181e78d8e616258c17c735e95cfe58250aef6979 (GZIP_PROG): Renamed from GZIP. (install-arch-indep): Adjust. diff -r 181e78d8e616 -r a40925b52cdc Makefile.in --- 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; \