diff options
author | tron <tron@openttd.org> | 2007-01-07 08:17:56 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2007-01-07 08:17:56 +0000 |
commit | d76ed433f7b00774a73b4b6a6f9549ae974bdaa9 (patch) | |
tree | 8cb54a388da18f796a982e09a670853a019a65f4 /configure | |
parent | 7156749043dce28f8eaf636f8a358d6712ae3792 (diff) | |
download | openttd-d76ed433f7b00774a73b4b6a6f9549ae974bdaa9.tar.xz |
(svn r7939) Fix useless use of cat
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |