Mercurial > emacs
changeset 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 | 2807618b3f72 |
children | c92752c3e4b6 |
files | lib-src/Makefile.in |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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} ; \