From: Lute Kamstra Date: Mon, 20 Jun 2005 13:54:33 +0000 (+0000) Subject: (epaths-force): Protect both lisppath and buildlisppath from whitespace. X-Git-Tag: emacs-pretest-22.0.90~8797 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eb7c6f2062bc9e511bf56cc6f9f5f3c0462de9ef;p=emacs.git (epaths-force): Protect both lisppath and buildlisppath from whitespace. --- diff --git a/ChangeLog b/ChangeLog index 7419760a3f1..c6652b4010b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-06-19 J,bi(Br,bt(Bme Marant + + * Makefile.in (epaths-force): Protect both lisppath and + buildlisppath from whitespace. + 2005-06-08 Steven Tamm * configure.in: Support Darwin/MacOSX on Intel diff --git a/Makefile.in b/Makefile.in index 9753017d72d..1b4a3d8c36b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -260,8 +260,8 @@ epaths-force: FRC x_default_search_path=`echo ${x_default_search_path}`; \ gamedir=`echo ${gamedir}`; \ sed < ${srcdir}/src/epaths.in > epaths.h.$$$$ \ - -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \ - -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \ + -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'"$${lisppath}"'";' \ + -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'"$${buildlisppath}"'";' \ -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \ -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \ -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \