]> git.eshelyaron.com Git - emacs.git/commitdiff
(leim-list.el): Use `(cd foo && pwd)` instead of `(cd foo; pwd)`.
authorKenichi Handa <handa@m17n.org>
Sat, 17 Oct 1998 01:58:01 +0000 (01:58 +0000)
committerKenichi Handa <handa@m17n.org>
Sat, 17 Oct 1998 01:58:01 +0000 (01:58 +0000)
(install): Likewise.

leim/Makefile.in

index 780e2be8e376679ed727b269497631b9a5457247..bece75ff2df12c4a4f4b45d28e5a152c8ee866d9 100644 (file)
@@ -147,7 +147,7 @@ ${TIT}:
            -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 @@ leim-list.el: ${SUBDIRS} ${WORLD}
        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 \