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
commit9ad0d4cf1ac30302ba5aeaf99c7c15e1b53d81f0 (patch)
tree8cb54a388da18f796a982e09a670853a019a65f4 /configure
parent0a44c03edd611e9b816ae7bcc71561b1ff7bd259 (diff)
downloadopenttd-9ad0d4cf1ac30302ba5aeaf99c7c15e1b53d81f0.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; }