suspend-desktop: fixups
authorKoen Kooi <koen@openembedded.org>
Thu, 29 Jun 2006 12:12:46 +0000 (12:12 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Thu, 29 Jun 2006 12:12:46 +0000 (12:12 +0000)
* fix do_install to not break (see oe bug #1023, #1024 and #1025)
* set package_arch to all

packages/suspend-desktop/suspend-desktop_1.0.bb

index 4586b61..5ad9ec9 100644 (file)
@@ -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
 }