mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-21 06:03: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
|
mkdir -p nacl-source
|
||||||
|
|
||||||
arlist=`find . -name libnacl.a`
|
arlist=`find . -name libnacl.a`
|
||||||
arcount=`echo $arlist | wc -l`
|
arcount=`echo $arlist | wc -w`
|
||||||
if [ $arcount -eq 0 ]; then
|
if [ $arcount -eq 0 ]; then
|
||||||
cd nacl-source
|
cd nacl-source
|
||||||
bzip2 -d ../nacl-source.tar | tar xvf -
|
bzip2 -d ../nacl-source.tar | tar xvf -
|
||||||
|
Loading…
Reference in New Issue
Block a user