emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109323: * Makefile.in (install-arch-


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109323: * Makefile.in (install-arch-indep): Avoid eval.
Date: Tue, 31 Jul 2012 09:58:08 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109323
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Tue 2012-07-31 09:58:08 +0200
message:
  * Makefile.in (install-arch-indep): Avoid eval.
modified:
  ChangeLog
  Makefile.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-07-31 06:52:13 +0000
+++ b/ChangeLog 2012-07-31 07:58:08 +0000
@@ -1,3 +1,7 @@
+2012-07-31  Andreas Schwab  <address@hidden>
+
+       * Makefile.in (install-arch-indep): Avoid eval.
+
 2012-07-31  Glenn Morris  <address@hidden>
 
        * configure.ac (opsysfile, S_FILE): Now they are always empty.

=== modified file 'Makefile.in'
--- a/Makefile.in       2012-07-30 20:34:58 +0000
+++ b/Makefile.in       2012-07-31 07:58:08 +0000
@@ -495,8 +495,11 @@
 ## http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00005.html
 install-arch-indep: install-info install-man ${INSTALL_ARCH_INDEP_EXTRA}
        umask 022 ; \
-         eval $(MKDIR_P) \
-           "'$(DESTDIR)`echo ${locallisppath}|sed \"s,:,' '$(DESTDIR),g\"`'"
+       locallisppath='${locallisppath}'; \
+       IFS=:; \
+       for d in $$locallisppath; do \
+         ${MKDIR_P} "$(DESTDIR)$$d"; \
+       done
        -set ${COPYDESTS} ; \
        unset CDPATH; \
        $(set_installuser); \


reply via email to

[Prev in Thread] Current Thread [Next in Thread]