diff options
Diffstat (limited to 'nt/Makefile.in')
-rw-r--r-- | nt/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nt/Makefile.in b/nt/Makefile.in index 8bd37e7983c..17fef43e26d 100644 --- a/nt/Makefile.in +++ b/nt/Makefile.in @@ -144,7 +144,8 @@ $(DESTDIR)${archlibdir}: all @echo @echo "Installing utilities run internally by Emacs." umask 022; ${MKDIR_P} "$(DESTDIR)${archlibdir}" - if [ "`cd \"$(DESTDIR)${archlibdir}\" && /bin/pwd`" != "`/bin/pwd`" ]; then \ + exp_archlibdir=`cd "$(DESTDIR)${archlibdir}" && /bin/pwd`; \ + if [ "$$exp_archlibdir" != "`/bin/pwd`" ]; then \ for file in ${UTILITIES}; do \ $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file "$(DESTDIR)${archlibdir}/$$file" ; \ done ; \ |