Mercurial > emacs
diff Makefile.in @ 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 | d3f9ffbaf324 |
| children | e8c34523430e 7beb78bc1f8e |
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; \
