diff options
| author | Jim Blandy | 1993-05-30 19:40:39 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-30 19:40:39 +0000 |
| commit | f7d3e7d055f5ef2d11e3dc4999b6820cc0c3cc2a (patch) | |
| tree | 84d40269677b1acfd9a9ec3ed41fed9de8599148 /lib-src | |
| parent | 8fd812d1cd4ad6b5324c9ef7bab4739c581643e5 (diff) | |
| download | emacs-f7d3e7d055f5ef2d11e3dc4999b6820cc0c3cc2a.tar.gz emacs-f7d3e7d055f5ef2d11e3dc4999b6820cc0c3cc2a.zip | |
* 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.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 135b7b3d4f0..27567bdf87d 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -116,7 +116,7 @@ ${archlibdir}: all | |||
| 116 | @echo | 116 | @echo |
| 117 | @echo "Installing utilities run internally by Emacs." | 117 | @echo "Installing utilities run internally by Emacs." |
| 118 | ./make-path ${archlibdir} | 118 | ./make-path ${archlibdir} |
| 119 | if [ `(cd ${archlibdir};/bin/pwd)` != `/bin/pwd` ]; then \ | 119 | if [ `(cd ${archlibdir} && /bin/pwd)` != `/bin/pwd` ]; then \ |
| 120 | for file in ${UTILITIES} ${INSTALLABLES}; do \ | 120 | for file in ${UTILITIES} ${INSTALLABLES}; do \ |
| 121 | cp $${file} ${archlibdir} ; \ | 121 | cp $${file} ${archlibdir} ; \ |
| 122 | chmod 755 ${archlibdir}/$${file} ; \ | 122 | chmod 755 ${archlibdir}/$${file} ; \ |