From: Paul Eggleton Date: Tue, 18 Nov 2008 23:18:07 +0000 (+0000) Subject: puzz-le: fix do_install X-Git-Tag: Release-2010-05/1~5222 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e76c7d20cbd8e056949e9a424d8a2d71317bc00;p=openembedded.git puzz-le: fix do_install --- diff --git a/packages/puzz-le/puzz-le_2.0.0.bb b/packages/puzz-le/puzz-le_2.0.0.bb index b779717393..01caafe650 100644 --- a/packages/puzz-le/puzz-le_2.0.0.bb +++ b/packages/puzz-le/puzz-le_2.0.0.bb @@ -3,6 +3,8 @@ SECTION = "opie/games" PRIORITY = "optional" LICENSE = "GPL" +PR = "r1" + SRC_URI = "http://www.warmi.net/zaurus/files/puzz-le_${PV}.tar.gz \ file://gcc3.patch;patch=1" S = "${WORKDIR}/puzzle_arm" @@ -10,7 +12,7 @@ S = "${WORKDIR}/puzzle_arm" inherit palmtop do_install() { - install -m 0755 puzz-le Qtopia/puzz-le/${palmtopdir}/bin/puzz-le - install -d ${D}/ - cp -pPR Qtopia/puzz-le/* ${D}/ + install -d ${D}${palmtopdir}/bin + install -m 0755 puzz-le ${D}${palmtopdir}/bin/ + cp -pPR Qtopia/puzz-le/opt/QtPalmtop/* ${D}${palmtopdir}/ }