diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2006-01-31 16:40:53 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-31 16:40:53 +0000 |
commit | 86181904a0f3f872c02c88ad604092101fc65505 (patch) | |
tree | 4fd4c796cef5d2295269e0040562bbe891501884 | |
parent | 11209f3045067bac66d575ed86772f321eebd4e1 (diff) |
apmd: set /usr/bin/apm permissions to 0755 instead of 4577
-rw-r--r-- | packages/apmd/apmd_3.2.2.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/apmd/apmd_3.2.2.bb b/packages/apmd/apmd_3.2.2.bb index 206c520f8a..5c5c15bed2 100644 --- a/packages/apmd/apmd_3.2.2.bb +++ b/packages/apmd/apmd_3.2.2.bb @@ -3,7 +3,7 @@ SECTION = "base" PRIORITY = "required" DEPENDS = "libtool-cross" LICENSE = "GPL" -PR = "r6" +PR = "r7" SRC_URI = "${DEBIAN_MIRROR}/main/a/apmd/apmd_${PV}.orig.tar.gz; \ file://debian.patch;patch=1 \ @@ -45,7 +45,7 @@ do_install() { install -d ${D}${libdir} install -d ${D}${datadir}/apmd - install -m 4577 ${S}/.libs/apm ${D}${bindir}/apm + install -m 0755 ${S}/.libs/apm ${D}${bindir}/apm install -m 0755 ${S}/.libs/apmd ${D}${sbindir}/apmd install -m 0755 ${WORKDIR}/apmd_proxy ${D}${sysconfdir}/apm/ install -m 0644 ${WORKDIR}/apmd_proxy.conf ${D}${datadir}/apmd/ |