changeset 23477:d470109824f2

(leim-list.el): Use `(cd foo && pwd)` instead of `(cd foo; pwd)`. (install): Likewise.
author Kenichi Handa <handa@m17n.org>
date Sat, 17 Oct 1998 01:58:01 +0000
parents a1abe3ae2cd0
children efd4275c55d4
files leim/Makefile.in
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/leim/Makefile.in	Sat Oct 17 01:58:01 1998 +0000
+++ b/leim/Makefile.in	Sat Oct 17 01:58:01 1998 +0000
@@ -147,7 +147,7 @@
 	    -f batch-byte-compile ${TIT}
 
 leim-list.el: ${SUBDIRS} ${WORLD}
-	if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \
+	if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
 	  ${RUN-EMACS} -l ${buildlisppath}/international/quail \
 	    --eval "(update-leim-list-file \".\")" ; \
 	else \
@@ -156,11 +156,11 @@
 	fi
 
 install: all
-	if [ x`(cd ${INSTALLDIR}; /bin/pwd)` != x`(/bin/pwd)` ] ; then \
+	if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
 	  rm -rf ${INSTALLDIR}/leim-list.el; \
 	  rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \
 	  echo "Copying leim files to ${INSTALLDIR} ..." ; \
-	  if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \
+	  if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
 	    tar -cf - leim-list.el quail skk \
 		| (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
 	  else \