diff options
author | Andreas Schwab <schwab@suse.de> | 2005-11-03 17:00:51 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2005-11-03 17:00:51 +0000 |
commit | d95f329f2b9a8aa6652764d04d9c1c6e41d0d684 (patch) | |
tree | 38dc4ef49bdaec57cfec221e0a54d2167c8ed0d3 /leim/Makefile.in | |
parent | a220d97b5fa65e6fe5cfb6019437ef4d4421a785 (diff) | |
download | emacs-d95f329f2b9a8aa6652764d04d9c1c6e41d0d684.tar.gz |
(GZIP_PROG): Renamed from GZIP.
(install): Adjust.
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in index 4eab7378760..5f7dad1902b 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -1,7 +1,7 @@ # Makefile for leim subdirectory in GNU Emacs. # Copyright (C) 1997,98,1999,2000,2001 Electrotechnical Laboratory, JAPAN. # Licensed to the Free Software Foundation. -# Copyright (C) 1997,98,1999,2000,01,02,03,2004 +# Copyright (C) 1997,98,1999,2000,01,02,03,2004,2005 # Free Software Foundation, Inc. # Copyright (C) 2001,02,03,2004 # National Institute of Advanced Industrial Science and Technology (AIST) @@ -37,7 +37,7 @@ srcdir=@srcdir@ # Where to install LEIM files. INSTALLDIR=${datadir}/emacs/${version}/leim -GZIP = @GZIP@ +GZIP_PROG = @GZIP_PROG@ # On Xenix and the IBM RS6000, double-dot gets screwed up. dot = . @@ -241,11 +241,11 @@ install: all rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \ else true; fi -unset CDPATH; \ - if [ -n "${GZIP}" ]; \ + if [ -n "${GZIP_PROG}" ]; \ then \ echo "Compressing *.el ..." ; \ (cd ${INSTALLDIR}; 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 -chmod -R a+r ${INSTALLDIR} |