From 8f9d433917dd9622118321af32a4d2d6525cbd0c Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Tue, 12 Feb 2013 19:23:34 +1300 Subject: [PATCH] The default ARCH was broken due to $ARCH not being exported. Change-Id: I84f2b60c391d90ed285bd30669260c8483a3c76f --- lib/img-defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/img-defaults b/lib/img-defaults index 273dd9d0..e473c28e 100644 --- a/lib/img-defaults +++ b/lib/img-defaults @@ -14,7 +14,7 @@ # under the License. # options for create-baremetal-image.sh -ARCH=${ARCH:-$(dpkg --print-architecture)} +export ARCH=${ARCH:-$(dpkg --print-architecture)} FS_TYPE=${FS_TYPE:-ext4} # Used to set the file extension only at this stage. IMAGE_TYPE=${IMAGE_TYPE:-qcow2}