aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorJan Djärv2012-07-29 18:55:02 +0200
committerJan Djärv2012-07-29 18:55:02 +0200
commitffd817eb10bd5e4ad1bf693fc2ebdffd25dea874 (patch)
tree17249090e7e077099b4d9106f44f05050669ee5c /Makefile.in
parentbb6eb9fcbd3ce25724ce3823132fa5d758a5ade1 (diff)
downloademacs-ffd817eb10bd5e4ad1bf693fc2ebdffd25dea874.tar.gz
emacs-ffd817eb10bd5e4ad1bf693fc2ebdffd25dea874.zip
* Makefile.in (install-arch-indep): Handle space in locallisppath.
* src/lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before setting sitelisp. Fixes: debbugs:12010
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 95b0931087f..c6df480ce7c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -285,9 +285,9 @@ removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g'
285# to just letting configure generate epaths.h from epaths.in in a 285# to just letting configure generate epaths.h from epaths.in in a
286# similar way to how Makefile is made from Makefile.in. 286# similar way to how Makefile is made from Makefile.in.
287epaths-force: FRC 287epaths-force: FRC
288 @(standardlisppath=`echo ${standardlisppath} | ${removenullpaths}` ; \ 288 @(standardlisppath=`echo "${standardlisppath}" | ${removenullpaths}` ; \
289 locallisppath=`echo ${locallisppath} | ${removenullpaths}` ; \ 289 locallisppath=`echo "${locallisppath}" | ${removenullpaths}` ; \
290 buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \ 290 buildlisppath=`echo "${buildlisppath}" | ${removenullpaths}` ; \
291 x_default_search_path=`echo ${x_default_search_path}`; \ 291 x_default_search_path=`echo ${x_default_search_path}`; \
292 gamedir=`echo ${gamedir}`; \ 292 gamedir=`echo ${gamedir}`; \
293 sed < ${srcdir}/src/epaths.in > epaths.h.$$$$ \ 293 sed < ${srcdir}/src/epaths.in > epaths.h.$$$$ \
@@ -489,7 +489,8 @@ set_installuser=for installuser in $${LOGNAME} $${USERNAME} $${USER} \
489## http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00005.html 489## http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00005.html
490install-arch-indep: install-info install-man ${INSTALL_ARCH_INDEP_EXTRA} 490install-arch-indep: install-info install-man ${INSTALL_ARCH_INDEP_EXTRA}
491 umask 022 ; \ 491 umask 022 ; \
492 $(MKDIR_P) $(DESTDIR)`echo ${locallisppath} | sed 's,:, $(DESTDIR),g'` 492 eval sh -x $(MKDIR_P) \
493 "'$(DESTDIR)`echo ${locallisppath}|sed \"s,:,' '$(DESTDIR),g\"`'"
493 -set ${COPYDESTS} ; \ 494 -set ${COPYDESTS} ; \
494 unset CDPATH; \ 495 unset CDPATH; \
495 $(set_installuser); \ 496 $(set_installuser); \