diff options
| author | Lute Kamstra | 2005-06-20 13:54:33 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-06-20 13:54:33 +0000 |
| commit | eb7c6f2062bc9e511bf56cc6f9f5f3c0462de9ef (patch) | |
| tree | 9562eb98bf59830c901d8c0c5a1830c227d254ee | |
| parent | cc4cb0f5cb9425b6f5b5a62a1b7dd534dc6d698f (diff) | |
| download | emacs-eb7c6f2062bc9e511bf56cc6f9f5f3c0462de9ef.tar.gz emacs-eb7c6f2062bc9e511bf56cc6f9f5f3c0462de9ef.zip | |
(epaths-force): Protect both lisppath and buildlisppath from whitespace.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-06-19 J,bi(Br,bt(Bme Marant <jerome@marant.org> | ||
| 2 | |||
| 3 | * Makefile.in (epaths-force): Protect both lisppath and | ||
| 4 | buildlisppath from whitespace. | ||
| 5 | |||
| 1 | 2005-06-08 Steven Tamm <steventamm@mac.com> | 6 | 2005-06-08 Steven Tamm <steventamm@mac.com> |
| 2 | 7 | ||
| 3 | * configure.in: Support Darwin/MacOSX on Intel | 8 | * 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 | |||
| 260 | x_default_search_path=`echo ${x_default_search_path}`; \ | 260 | x_default_search_path=`echo ${x_default_search_path}`; \ |
| 261 | gamedir=`echo ${gamedir}`; \ | 261 | gamedir=`echo ${gamedir}`; \ |
| 262 | sed < ${srcdir}/src/epaths.in > epaths.h.$$$$ \ | 262 | sed < ${srcdir}/src/epaths.in > epaths.h.$$$$ \ |
| 263 | -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \ | 263 | -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'"$${lisppath}"'";' \ |
| 264 | -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \ | 264 | -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'"$${buildlisppath}"'";' \ |
| 265 | -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \ | 265 | -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \ |
| 266 | -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \ | 266 | -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \ |
| 267 | -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \ | 267 | -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \ |