summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-03-06 23:42:30 +0000
committertruelight <truelight@openttd.org>2007-03-06 23:42:30 +0000
commita69e3b1c45f12ee6f21a4ac1c8a8f8bc0892f226 (patch)
treed60f44befca78a86ce7e6321e685b1296cf334f8 /configure
parent0b5cbecd3d097045918a5de1b6d9a386d5d84904 (diff)
downloadopenttd-a69e3b1c45f12ee6f21a4ac1c8a8f8bc0892f226.tar.xz
(svn r9049) -Fix [Config]: when running 'bash configure', make sure automated reconfigures run 'bash configure' too.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index 51a5c440e..e61b972dc 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,10 @@
#!/bin/sh
+CONFIGURE_EXECUTABLE="$_"
+# On *nix systems those two are equal when ./configure is done
+if [ "$0" != "$CONFIGURE_EXECUTABLE" ]; then
+ CONFIGURE_EXECUTABLE="$CONFIGURE_EXECUTABLE $0"
+fi
# Find out where configure is (in what dir)
ROOT_DIR="`dirname $0`"
ROOT_DIR="`cd $ROOT_DIR && pwd`"