aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1998-10-17 01:58:01 +0000
committerKenichi Handa1998-10-17 01:58:01 +0000
commit2a44b43819bc32d9e5479ae5cde28ffd4f0b84f3 (patch)
tree0b3fd15b09d8b87c8970c9db2c567ddfa5fc7812
parent3742fe75f8a704b537f3ff7add903d18e6826244 (diff)
downloademacs-2a44b43819bc32d9e5479ae5cde28ffd4f0b84f3.tar.gz
emacs-2a44b43819bc32d9e5479ae5cde28ffd4f0b84f3.zip
(leim-list.el): Use `(cd foo && pwd)` instead of `(cd foo; pwd)`.
(install): Likewise.
-rw-r--r--leim/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 780e2be8e37..bece75ff2df 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -147,7 +147,7 @@ ${TIT}:
147 -f batch-byte-compile ${TIT} 147 -f batch-byte-compile ${TIT}
148 148
149leim-list.el: ${SUBDIRS} ${WORLD} 149leim-list.el: ${SUBDIRS} ${WORLD}
150 if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \ 150 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
151 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ 151 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
152 --eval "(update-leim-list-file \".\")" ; \ 152 --eval "(update-leim-list-file \".\")" ; \
153 else \ 153 else \
@@ -156,11 +156,11 @@ leim-list.el: ${SUBDIRS} ${WORLD}
156 fi 156 fi
157 157
158install: all 158install: all
159 if [ x`(cd ${INSTALLDIR}; /bin/pwd)` != x`(/bin/pwd)` ] ; then \ 159 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
160 rm -rf ${INSTALLDIR}/leim-list.el; \ 160 rm -rf ${INSTALLDIR}/leim-list.el; \
161 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \ 161 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \
162 echo "Copying leim files to ${INSTALLDIR} ..." ; \ 162 echo "Copying leim files to ${INSTALLDIR} ..." ; \
163 if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \ 163 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
164 tar -cf - leim-list.el quail skk \ 164 tar -cf - leim-list.el quail skk \
165 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\ 165 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
166 else \ 166 else \