diff options
author | Cem Keylan <cem@ckyln.com> | 2020-12-31 14:42:36 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-12-31 14:42:36 +0300 |
commit | ac7e7ff425d94b89f08b2b388ffe508b71acb5a4 (patch) | |
tree | 6057eb4dcda082ce140456b2146023cc4004d960 /core/busybox | |
parent | c4386b75bd6ca369952c06773740fef22eb01522 (diff) | |
download | repository-ac7e7ff425d94b89f08b2b388ffe508b71acb5a4.tar.gz |
busybox|sbase build: fix shellcheck errors
Diffstat (limited to 'core/busybox')
-rwxr-xr-x | core/busybox/build | 2 |
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 |