summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2008-01-14 20:30:05 +0000
committerbjarni <bjarni@openttd.org>2008-01-14 20:30:05 +0000
commit224d7afe3d9a151c8c997affb2ac9100b5df8fe6 (patch)
tree93a05a168c1a95339b5bb5039e848529ff81cd3a /configure
parentccd557fa544047d1ea74f8484bb4a0d721a4c720 (diff)
downloadopenttd-224d7afe3d9a151c8c997affb2ac9100b5df8fe6.tar.xz
(svn r11853) -Fix [r11837]: [OSX] reconfigure killed the space in shared-dir
Thanks to TrueLight for finding the solution to this one Note: if the shared-dir setting is already broken due to this then you have to manually run configure again
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 31843f0b9..1c6aaa719 100755
--- a/configure
+++ b/configure
@@ -37,7 +37,7 @@ if [ "$1" = "--reconfig" ] || [ "$1" = "--reconfigure" ]; then
exit 1
fi
# Make sure we don't lock config.cache
- cat config.cache > cache.tmp
+ cat config.cache | sed 's/\\ /\\\\ /g' > cache.tmp
sh cache.tmp
rm -f cache.tmp
exit $?