diff options
author | Justin Patrin <papercrane@gmail.com> | 2005-08-13 06:41:45 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-13 06:41:45 +0000 |
commit | db714350cce5928ea601419bb79381d4907d03e6 (patch) | |
tree | 17cd4760befa2d4ae89e4689450cdd60539981bb /packages/altboot/files/altboot.func | |
parent | abd94547d55b393d2ec8e9fd6ba7a5ebc1bd87d7 (diff) |
Remove extra spaces around "=" causing shell script syntax errors
Diffstat (limited to 'packages/altboot/files/altboot.func')
-rw-r--r-- | packages/altboot/files/altboot.func | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/altboot/files/altboot.func b/packages/altboot/files/altboot.func index 3a6c743f0d..17cba10741 100644 --- a/packages/altboot/files/altboot.func +++ b/packages/altboot/files/altboot.func @@ -149,7 +149,7 @@ pivot_image() { # Busybox's "mount" doesn't seem to like "-o loop" for some reason # It works on collie and b0rks on poodle. if [ "$IMAGE_TYPE" = "" ]; then - $IMAGE_TYPE = "auto" + $IMAGE_TYPE="auto" fi mount -t $IMAGE_TYPE /dev/loop0 /media/image || die "mount /dev/loop0 /media/image failed!" |