1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-29 01:19:11 +00:00

(svn r7939) Fix useless use of cat

This commit is contained in:
tron
2007-01-07 08:17:56 +00:00
parent 7156749043
commit d76ed433f7
2 changed files with 5 additions and 5 deletions

2
configure vendored
View File

@@ -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; }