android-image-utils-native: fix deploying fastboot binary
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>
Sun, 14 Mar 2010 14:00:46 +0000 (15:00 +0100)
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>
Sun, 14 Mar 2010 14:00:46 +0000 (15:00 +0100)
recipes/android/android-image-utils-native_git.bb

index 3b39886..489a693 100644 (file)
@@ -2,7 +2,7 @@ DESCRIPTION = "Android Image Creation and Booting Utilities"
 SECTION = "console/utils"
 LICENSE = "GPL"
 PV = "1.0+gitr${SRCREV}"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "\
   ${FREESMARTPHONE_GIT}/utilities.git;protocol=git;branch=master \
@@ -12,8 +12,8 @@ S = "${WORKDIR}/git/android/image-utils"
 inherit autotools_stage native
 
 do_deploy () {
-       install -d ${DEPLOY_DIR_IMAGE}
-       install -m 0755 fastboot ${DEPLOY_DIR_IMAGE}
+       install -d ${DEPLOY_DIR_TOOLS}
+       install -m 0755 fastboot/fastboot ${DEPLOY_DIR_TOOLS}
 }
 do_deploy[dirs] = "${S}"
 addtask deploy before do_build after do_compile