summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2008-05-05 21:01:37 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2008-05-05 21:01:37 +0000
commit6165473d292012b6c60308c8eb0f3604a020b046 (patch)
tree466c25f6c3e68acfdebb5df3f8a7328ea954aae2
parent6f5ffc9531471696cbe116c976cf35eff590fbde (diff)
portmap: do not install initscript with world writable permissions
-rw-r--r--packages/portmap/portmap_6.0.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/portmap/portmap_6.0.bb b/packages/portmap/portmap_6.0.bb
index f42ed1e288..cb94a48fb7 100644
--- a/packages/portmap/portmap_6.0.bb
+++ b/packages/portmap/portmap_6.0.bb
@@ -1,6 +1,6 @@
require portmap.inc
-PR = "r2"
+PR = "r3"
SRC_URI = "http://www.sourcefiles.org/Networking/Tools/Miscellanenous/portmap-6.0.tgz \
file://destdir-no-strip.patch;patch=1 \
@@ -17,6 +17,6 @@ CPPFLAGS += "-DFACILITY=LOG_DAEMON -DENABLE_DNS"
fakeroot do_install() {
install -d ${D}${mandir}/man8/ ${D}${base_sbindir} ${D}${sysconfdir}/init.d
- install -m 0757 ${WORKDIR}/portmap.init ${D}${sysconfdir}/init.d/portmap
+ install -m 0755 ${WORKDIR}/portmap.init ${D}${sysconfdir}/init.d/portmap
oe_runmake install DESTDIR=${D}
}