From: Koen Kooi Date: Thu, 29 Jun 2006 12:12:46 +0000 (+0000) Subject: suspend-desktop: fixups X-Git-Tag: Release-2010-05/1~9453^2~1406 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e6c7f40c2c4b2ccff5786d1f9c7127a85ab768c;p=openembedded.git suspend-desktop: fixups * fix do_install to not break (see oe bug #1023, #1024 and #1025) * set package_arch to all --- diff --git a/packages/suspend-desktop/suspend-desktop_1.0.bb b/packages/suspend-desktop/suspend-desktop_1.0.bb index 4586b61978..5ad9ec9478 100644 --- a/packages/suspend-desktop/suspend-desktop_1.0.bb +++ b/packages/suspend-desktop/suspend-desktop_1.0.bb @@ -1,4 +1,4 @@ -PR = "r0" +PR = "r1" SECTION = "gpe" PRIORITY = "optional" DESCRIPTION = "Suspend feature for the application launcher menu." @@ -8,7 +8,7 @@ DEPENDS = "gpe-conf" RDEPENDS = "gpe-conf" RRECOMMENDS = "apm" PACKAGES = ${PN} - +PACKAGE_ARCH = "all" SRC_URI = "file://suspend.desktop \ file://suspend.sh" @@ -21,6 +21,6 @@ do_compile() { do_install() { install -d ${D}/${bindir} install -d ${D}/${datadir}/applications - install -m644 ${WORKDIR}/suspend.desktop ${D}/${datadir}/applications/suspend.desktop - install -m755 ${WORKDIR}/suspend.sh ${D}/${bindir}/suspend.sh + install -m 644 ${WORKDIR}/suspend.desktop ${D}/${datadir}/applications/suspend.desktop + install -m 755 ${WORKDIR}/suspend.sh ${D}/${bindir}/suspend.sh }