build.sh: fix making specific target

This commit is contained in:
Calin Crisan 2018-03-25 20:35:02 +03:00
parent ad5f3cb655
commit 4778e4599d

View File

@ -115,10 +115,10 @@ elif [ "$target" == "all" ]; then
make O=$outputdir all
elif [ -n "$target" ]; then
$0 $b all
make O=$outputdir $target
else
make O=$outputdir all
else # if [ -z "$target ]
$0 $b all
echo "build successful"
fi