diff options
author | Glenn Morris <rgm@gnu.org> | 2013-10-24 19:04:33 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-10-24 19:04:33 -0400 |
commit | 357a508109504494cdc4a3fa0c53aca351890026 (patch) | |
tree | efa328dbca98958a721f529c036c5102f875fed8 /lib-src/Makefile.in | |
parent | 71e3276bc574257845c81c095d41ed58399089fe (diff) | |
download | emacs-357a508109504494cdc4a3fa0c53aca351890026.tar.gz |
Avoid non-portable "` ... \"...\" ... `" nesting
* configure.ac:
* Makefile.in (install-arch-indep, install-etcdoc, install-info):
* lib-src/Makefile.in ($(DESTDIR)${archlibdir}):
* nt/Makefile.in ($(DESTDIR)${archlibdir}):
Avoid non-portable "`\" nesting.
Diffstat (limited to 'lib-src/Makefile.in')
-rw-r--r-- | lib-src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 3843f549679..b765668aebc 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -234,7 +234,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 ; \ |