aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-04-08 22:16:44 -0500
committerRob Landley <rob@landley.net>2020-04-08 22:16:44 -0500
commit4f1e357b5d2064b433006bd707a2e7307d79542a (patch)
treed15ffa2b48c79cf984b8b22c8a3f62cb602ae3a6 /scripts
parent8f737e3af0886e287153a24bd08e2086a4eaf710 (diff)
downloadtoybox-4f1e357b5d2064b433006bd707a2e7307d79542a.tar.gz
Typo.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mkroot.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkroot.sh b/scripts/mkroot.sh
index 76c60ed0..40ecc4ec 100755
--- a/scripts/mkroot.sh
+++ b/scripts/mkroot.sh
@@ -217,7 +217,7 @@ else
# Build kernel. Copy config, device tree binary, and kernel binary to output
make ARCH=$KARCH CROSS_COMPILE="$CROSS_COMPILE" -j $(nproc) &&
cp .config "$OUTPUT/linux-fullconfig" || exit 1
- [ ! -z "$DTB" ] && { cp "$DTB" "$OUTPUT")" || exit 1 ;}
+ [ ! -z "$DTB" ] && { cp "$DTB" "$OUTPUT" || exit 1 ;}
cp "$VMLINUX" "$OUTPUT" && cd .. && rm -rf linux && popd || exit 1
fi