* Makefile.in (install-arch-indep): Avoid eval.

This commit is contained in:
Andreas Schwab 2012-07-31 09:58:08 +02:00
parent b9031d6911
commit 57ae02b1db
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
* Makefile.in (install-arch-indep): Avoid eval.
2012-07-31 Glenn Morris <rgm@gnu.org>
* configure.ac (opsysfile, S_FILE): Now they are always empty.

View file

@ -495,8 +495,11 @@ set_installuser=for installuser in $${LOGNAME} $${USERNAME} $${USER} \
## 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); \