From 87b3afe8967014e85d9f8af0c49137287dba4116 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 24 Jun 2019 19:32:44 +0300 Subject: Fix incorrect ARCH variable name The architecture is stored in a variable called $arch, not $ARCH. Fix it. Signed-off-by: Laurent Pinchart --- kbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kbuild.sh b/kbuild.sh index 1f530a0..9e4bbc5 100755 --- a/kbuild.sh +++ b/kbuild.sh @@ -216,7 +216,7 @@ copy_dtbs() { local dst=${dtb/*:/} dst=${dst/*\//} - cp $output_dir/arch/${ARCH}/boot/dts/$src* $dest_dir/$dst + cp $output_dir/arch/${arch}/boot/dts/$src* $dest_dir/$dst done } -- cgit v1.2.3