diff mbox

[Branch,~linaro-image-tools/linaro-image-tools/trunk] Rev 528: [merge] Merged lp:~berolinux/linaro-image-tools/remove-superfluous-dependency.

Message ID 20120615131912.6410.52185.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Milo Casagrande June 15, 2012, 1:19 p.m. UTC
Merge authors:
  Bernhard Rosenkraenzer (berolinux)
Related merge proposals:
  https://code.launchpad.net/~berolinux/linaro-image-tools/remove-superfluous-dependency/+merge/107924
  proposed by: Bernhard Rosenkraenzer (berolinux)
  review: Approve - Milo Casagrande (milo)
------------------------------------------------------------
revno: 528 [merge]
committer: Milo Casagrande <milo@ubuntu.com>
branch nick: trunk
timestamp: Fri 2012-06-15 15:17:54 +0200
message:
  [merge] Merged lp:~berolinux/linaro-image-tools/remove-superfluous-dependency.
modified:
  linaro-android-media-create


--
lp:linaro-image-tools
https://code.launchpad.net/~linaro-image-tools/linaro-image-tools/trunk

You are subscribed to branch lp:linaro-image-tools.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-image-tools/linaro-image-tools/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'linaro-android-media-create'
--- linaro-android-media-create	2012-02-21 08:01:08 +0000
+++ linaro-android-media-create	2012-05-30 07:32:31 +0000
@@ -40,7 +40,7 @@ 
     unpack_android_binary_tarball
     )
 from linaro_image_tools.media_create import get_android_args_parser
-from linaro_image_tools.utils import ensure_command, is_arm_host
+from linaro_image_tools.utils import ensure_command
 
 
 
@@ -81,8 +81,6 @@ 
     """Ensure we have the commands that we know are going to be used."""
     required_commands = [
         'mkfs.vfat', 'sfdisk', 'mkimage', 'parted']
-    if not is_arm_host():
-        required_commands.append('qemu-arm-static')
     for command in required_commands:
         ensure_command(command)