From 4778e4599d40803dd3bc86d23246fd48d257673c Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Sun, 25 Mar 2018 20:35:02 +0300 Subject: [PATCH] build.sh: fix making specific target --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 3f928daac8..86e48ba056 100755 --- a/build.sh +++ b/build.sh @@ -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