summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-10-14 19:47:28 +0000
committersmatz <smatz@openttd.org>2008-10-14 19:47:28 +0000
commit14d8689e6675bfc8298ac5c81083149b801e10ec (patch)
tree6160f41a70c019286e46316b48c07992116676ed /Makefile.in
parenta999bb322775b80f44bfc6e0f1886851d4bfc410 (diff)
downloadopenttd-14d8689e6675bfc8298ac5c81083149b801e10ec.tar.xz
(svn r14467) -Fix [FS#2350](r14443): use '~' instead of '#' as sed separator, it could be understood in a wrong way by shell
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index e3ea02e6a..d23a12ea5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -91,7 +91,7 @@ ifeq ($(shell if test -f config.cache; then echo 1; fi), 1)
@echo " Going to reconfigure with last known settings..."
@echo "----------------"
# Make sure we don't lock config.cache
- @$(shell cat config.cache | sed 's#\\ #\\\\ #g') || exit 1
+ @$(shell cat config.cache | sed 's~\\ ~\\\\ ~g') || exit 1
@echo "----------------"
@echo "Reconfig done. Please re-execute make."
@echo "----------------"