Mercurial > emacs
diff lib-src/Makefile.in @ 3311:5d06123fc1df
* Makefile.in: (${archlibdir}): Use `(cd foo && pwd)` instead of
`(cd foo ; pwd)` to get the canonical name of a directory; cd
might fail, and have pwd print out the current directory.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Sun, 30 May 1993 19:40:39 +0000 |
| parents | b25509c0993b |
| children | 4a9182ac9d17 |
line wrap: on
line diff
--- a/lib-src/Makefile.in Sun May 30 19:38:49 1993 +0000 +++ b/lib-src/Makefile.in Sun May 30 19:40:39 1993 +0000 @@ -116,7 +116,7 @@ @echo @echo "Installing utilities run internally by Emacs." ./make-path ${archlibdir} - if [ `(cd ${archlibdir};/bin/pwd)` != `/bin/pwd` ]; then \ + if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ for file in ${UTILITIES} ${INSTALLABLES}; do \ cp $${file} ${archlibdir} ; \ chmod 755 ${archlibdir}/$${file} ; \
