diff options
| author | Glenn Morris | 2013-10-24 19:04:33 -0400 |
|---|---|---|
| committer | Glenn Morris | 2013-10-24 19:04:33 -0400 |
| commit | 357a508109504494cdc4a3fa0c53aca351890026 (patch) | |
| tree | efa328dbca98958a721f529c036c5102f875fed8 /lib-src | |
| parent | 71e3276bc574257845c81c095d41ed58399089fe (diff) | |
| download | emacs-357a508109504494cdc4a3fa0c53aca351890026.tar.gz emacs-357a508109504494cdc4a3fa0c53aca351890026.zip | |
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')
| -rw-r--r-- | lib-src/ChangeLog | 3 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 35672f22d64..44d7260dead 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-10-24 Glenn Morris <rgm@gnu.org> | 1 | 2013-10-24 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in ($(DESTDIR)${archlibdir}): | ||
| 4 | Avoid non-portable "`\" nesting. | ||
| 5 | |||
| 3 | * Makefile.in (abs_top_srcdir): New, set by configure. | 6 | * Makefile.in (abs_top_srcdir): New, set by configure. |
| 4 | 7 | ||
| 5 | 2013-10-23 Glenn Morris <rgm@gnu.org> | 8 | 2013-10-23 Glenn Morris <rgm@gnu.org> |
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 | |||
| 234 | @echo | 234 | @echo |
| 235 | @echo "Installing utilities run internally by Emacs." | 235 | @echo "Installing utilities run internally by Emacs." |
| 236 | umask 022; ${MKDIR_P} "$(DESTDIR)${archlibdir}" | 236 | umask 022; ${MKDIR_P} "$(DESTDIR)${archlibdir}" |
| 237 | if [ "`cd \"$(DESTDIR)${archlibdir}\" && /bin/pwd`" != "`/bin/pwd`" ]; then \ | 237 | exp_archlibdir=`cd "$(DESTDIR)${archlibdir}" && /bin/pwd`; \ |
| 238 | if [ "$$exp_archlibdir" != "`/bin/pwd`" ]; then \ | ||
| 238 | for file in ${UTILITIES}; do \ | 239 | for file in ${UTILITIES}; do \ |
| 239 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file "$(DESTDIR)${archlibdir}/$$file" ; \ | 240 | $(INSTALL_PROGRAM) $(INSTALL_STRIP) $$file "$(DESTDIR)${archlibdir}/$$file" ; \ |
| 240 | done ; \ | 241 | done ; \ |