summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-05-16 12:36:33 +0000
committerrubidium <rubidium@openttd.org>2009-05-16 12:36:33 +0000
commita34d5bb6abb825b366e9b5e215266587936f9365 (patch)
tree7602ba93143041429fc457b9cc4877377219f276 /configure
parentdb7e24e211ce8c72a0ddd3a7094bf24de4777678 (diff)
downloadopenttd-a34d5bb6abb825b366e9b5e215266587936f9365.tar.xz
(svn r16318) -Change: use !! instead of @@ in src/*.in too.
-Change: use @ instead of ~ in configure/Makefiles so Debian's build system(s) can also build RC binaries.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index fa418abcb..e2b12b3ea 100755
--- a/configure
+++ b/configure
@@ -47,7 +47,7 @@ if [ "$1" = "--reconfig" ] || [ "$1" = "--reconfigure" ]; then
exit 1
fi
# Make sure we don't lock config.cache
- cat config.cache | sed 's~\\ ~\\\\ ~g' > cache.tmp
+ cat config.cache | sed 's@\\ @\\\\ @g' > cache.tmp
sh cache.tmp
rm -f cache.tmp
exit $?
@@ -70,7 +70,7 @@ ENDIAN_CHECK="endian_check$EXE"
DEPEND="depend$EXE"
if [ -z "$sort" ]; then
- PIPE_SORT="sed s~a~a~"
+ PIPE_SORT="sed s@a@a@"
else
PIPE_SORT="$sort"
fi
@@ -136,7 +136,7 @@ SRCS="` echo \"$SRCS\" | $awk ' { ORS = " " } { print $0; }'`"
# In makefiles, we always use -u for sort
if [ -z "$sort" ]; then
- sort="sed s~a~a~"
+ sort="sed s@a@a@"
else
sort="$sort -u"
fi