diff options
author | Andreas Schwab <schwab@suse.de> | 2005-11-03 17:00:25 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2005-11-03 17:00:25 +0000 |
commit | a220d97b5fa65e6fe5cfb6019437ef4d4421a785 (patch) | |
tree | d5ac4207e1e9ba2b9c31095ec2662a467e126fee /Makefile.in | |
parent | 46e35e9fe31cc9c5360dc923e4d5b0f28f5ecd64 (diff) | |
download | emacs-a220d97b5fa65e6fe5cfb6019437ef4d4421a785.tar.gz |
(GZIP_PROG): Renamed from GZIP.
(install-arch-indep): Adjust.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index f629963046f..c565bee02a3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -224,7 +224,7 @@ INSTALL_INFO = @INSTALL_INFO@ INSTALL_STRIP = # We use gzip to compress installed .el files. -GZIP = @GZIP@ +GZIP_PROG = @GZIP_PROG@ # ============================= Targets ============================== @@ -478,11 +478,11 @@ install-arch-indep: mkdir info (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; \ |