aboutsummaryrefslogtreecommitdiff
path: root/core/busybox/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-12-31 14:42:36 +0300
committerCem Keylan <cem@ckyln.com>2020-12-31 14:42:36 +0300
commitac7e7ff425d94b89f08b2b388ffe508b71acb5a4 (patch)
tree6057eb4dcda082ce140456b2146023cc4004d960 /core/busybox/build
parentc4386b75bd6ca369952c06773740fef22eb01522 (diff)
downloadrepository-ac7e7ff425d94b89f08b2b388ffe508b71acb5a4.tar.gz
busybox|sbase build: fix shellcheck errors
Diffstat (limited to 'core/busybox/build')
-rwxr-xr-xcore/busybox/build2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/busybox/build b/core/busybox/build
index f8c919ec..a34e5e3c 100755
--- a/core/busybox/build
+++ b/core/busybox/build
@@ -11,7 +11,7 @@ for patch in *.patch; do
done
if [ "$CPT_CROSS_TRIPLET" ]; then
- mk() { make ARCH=${CPT_CROSS_TRIPLET%%-*} CROSS_COMPILE=$CPT_CROSS_TRIPLET- "$@" ;}
+ mk() { make "ARCH=${CPT_CROSS_TRIPLET%%-*}" "CROSS_COMPILE=$CPT_CROSS_TRIPLET-" "$@" ;}
else
mk() { make "$@" ;}
fi