From: Michael 'Mickey' Lauer Date: Sun, 14 Mar 2010 14:00:46 +0000 (+0100) Subject: android-image-utils-native: fix deploying fastboot binary X-Git-Tag: Release-2010-05/1~340^2~128^2~89 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6615eb994476c9c8e96dd8a00b76af90deb313a3;p=openembedded.git android-image-utils-native: fix deploying fastboot binary --- diff --git a/recipes/android/android-image-utils-native_git.bb b/recipes/android/android-image-utils-native_git.bb index 3b39886278..489a69349a 100644 --- a/recipes/android/android-image-utils-native_git.bb +++ b/recipes/android/android-image-utils-native_git.bb @@ -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