1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-05 22:20:24 -08:00

* 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.
This commit is contained in:
Jim Blandy 1993-05-30 19:40:39 +00:00
parent 8fd812d1cd
commit f7d3e7d055

View file

@ -116,7 +116,7 @@ ${archlibdir}: all
@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} ; \