summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-01-07 08:17:56 +0000
committertron <tron@openttd.org>2007-01-07 08:17:56 +0000
commitd76ed433f7b00774a73b4b6a6f9549ae974bdaa9 (patch)
tree8cb54a388da18f796a982e09a670853a019a65f4 /configure
parent7156749043dce28f8eaf636f8a358d6712ae3792 (diff)
downloadopenttd-d76ed433f7b00774a73b4b6a6f9549ae974bdaa9.tar.xz
(svn r7939) Fix useless use of cat
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7800fe550..e7cfe9534 100755
--- a/configure
+++ b/configure
@@ -62,7 +62,7 @@ then
fi
# Read the source.list and process it
-SRCS="`cat $ROOT_DIR/source.list | tr '\r' '\n' | awk '
+SRCS="`< $ROOT_DIR/source.list tr '\r' '\n' | awk '
{ }
/^( *)#end/ { if (deep == skip) { skip -= 1; } deep -= 1; next; }
/^( *)#else/ { if (deep == skip) { skip -= 1; } else if (deep - 1 == skip) { skip += 1; } next; }