aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2012-07-31 09:58:08 +0200
committerAndreas Schwab2012-07-31 09:58:08 +0200
commit57ae02b1db359c1d00baf7b4323e2bb313f0fd8c (patch)
treeed0e266f5087b620052d670f55b3130f6a07c513
parentb9031d6911eec0b9ea6b3bed19437d7a052debcc (diff)
downloademacs-57ae02b1db359c1d00baf7b4323e2bb313f0fd8c.tar.gz
emacs-57ae02b1db359c1d00baf7b4323e2bb313f0fd8c.zip
* Makefile.in (install-arch-indep): Avoid eval.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in7
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6250248c305..0b1660ef853 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12012-07-31 Andreas Schwab <schwab@linux-m68k.org>
2
3 * Makefile.in (install-arch-indep): Avoid eval.
4
12012-07-31 Glenn Morris <rgm@gnu.org> 52012-07-31 Glenn Morris <rgm@gnu.org>
2 6
3 * configure.ac (opsysfile, S_FILE): Now they are always empty. 7 * configure.ac (opsysfile, S_FILE): Now they are always empty.
diff --git a/Makefile.in b/Makefile.in
index 89c06cce16e..ab9f16c0353 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -495,8 +495,11 @@ set_installuser=for installuser in $${LOGNAME} $${USERNAME} $${USER} \
495## http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00005.html 495## http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00005.html
496install-arch-indep: install-info install-man ${INSTALL_ARCH_INDEP_EXTRA} 496install-arch-indep: install-info install-man ${INSTALL_ARCH_INDEP_EXTRA}
497 umask 022 ; \ 497 umask 022 ; \
498 eval $(MKDIR_P) \ 498 locallisppath='${locallisppath}'; \
499 "'$(DESTDIR)`echo ${locallisppath}|sed \"s,:,' '$(DESTDIR),g\"`'" 499 IFS=:; \
500 for d in $$locallisppath; do \
501 ${MKDIR_P} "$(DESTDIR)$$d"; \
502 done
500 -set ${COPYDESTS} ; \ 503 -set ${COPYDESTS} ; \
501 unset CDPATH; \ 504 unset CDPATH; \
502 $(set_installuser); \ 505 $(set_installuser); \