diff options
author | Lute Kamstra <lute@gnu.org> | 2005-06-20 13:54:33 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-06-20 13:54:33 +0000 |
commit | eb7c6f2062bc9e511bf56cc6f9f5f3c0462de9ef (patch) | |
tree | 9562eb98bf59830c901d8c0c5a1830c227d254ee /Makefile.in | |
parent | cc4cb0f5cb9425b6f5b5a62a1b7dd534dc6d698f (diff) | |
download | emacs-eb7c6f2062bc9e511bf56cc6f9f5f3c0462de9ef.tar.gz |
(epaths-force): Protect both lisppath and buildlisppath from whitespace.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
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}";' \ |