1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

simplify shell syntax to work better on solaris, patch by

Nathan Keynes!

llvm-svn: 52721
This commit is contained in:
Chris Lattner 2008-06-25 16:03:42 +00:00
parent 7d89d61387
commit 36049c026a

View File

@ -9,7 +9,7 @@
set -e
set -u
input_lines=$(wc -l)
input_lines=`wc -l`
if [ "$input_lines" -ne "$1" ]; then
echo "count: expected $1 lines and got ${input_lines}."
exit 1