mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-20 21:53:12 +00:00
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:
parent
933d2c8aff
commit
ba6354e758
@ -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 -
|
||||
|
Loading…
Reference in New Issue
Block a user