diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2011-04-29 16:43:57 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-04 00:54:39 +0100 |
commit | f8e02f31a74d0c80d4056ab945819809f745b47b (patch) | |
tree | bff6fb7e61ecf52b71b0bcad69af35422b2ae11a /scripts | |
parent | ea0e29150edb03d785dfca63f220b00d10c6e22e (diff) | |
download | poky-f8e02f31a74d0c80d4056ab945819809f745b47b.tar.gz |
create-lsb-iamge:Fix bugs
Change variables "${ARCH}" to "${1}"
(From OE-Core rev: 18ac34ad614adaa918daf4bf93ce0eb1f42413c1)
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create-lsb-image | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create-lsb-image b/scripts/create-lsb-image index 94cb337678..48b96e241d 100755 --- a/scripts/create-lsb-image +++ b/scripts/create-lsb-image | |||
@@ -81,7 +81,7 @@ case ${1} in | |||
81 | ;; | 81 | ;; |
82 | "ppc32") | 82 | "ppc32") |
83 | P_ARCH=ppc | 83 | P_ARCH=ppc |
84 | T_ARCH=${ARCH} | 84 | T_ARCH=${1} |
85 | COM_PACKAGE_LIST="lsb-dist-testkit-4.1.0-5.${T_ARCH}.tar.gz" | 85 | COM_PACKAGE_LIST="lsb-dist-testkit-4.1.0-5.${T_ARCH}.tar.gz" |
86 | ;; | 86 | ;; |
87 | *) | 87 | *) |