Fixed a bug where the build process would be skipped due to

incorrectly thinking that libnacl.a already exists, when it doesnt.
This commit is contained in:
gardners 2011-10-25 13:39:56 +10:30
parent 933d2c8aff
commit ba6354e758

View File

@ -7,7 +7,7 @@ fi
mkdir -p nacl-source
arlist=`find . -name libnacl.a`
arcount=`echo $arlist | wc -l`
arcount=`echo $arlist | wc -w`
if [ $arcount -eq 0 ]; then
cd nacl-source
bzip2 -d ../nacl-source.tar | tar xvf -