diff options
author | Koen Kooi <koen@openembedded.org> | 2007-05-06 17:29:24 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-05-06 17:29:24 +0000 |
commit | 648b98489eddeb8ef852314741b13a38ae5c1068 (patch) | |
tree | f400ecf02d334ea452de04646b3bb3e5f5eecdf2 /packages | |
parent | 3fbd828c6fdcd947ec735c38ca9f700701d1354d (diff) |
acpid: add an extra install -d to avoid things like this:
./acpid-1.0.4-r2/image/usr/.debug/bin
Diffstat (limited to 'packages')
-rw-r--r-- | packages/acpid/acpid.inc | 1 | ||||
-rw-r--r-- | packages/acpid/acpid_1.0.4.bb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/packages/acpid/acpid.inc b/packages/acpid/acpid.inc index 69517a7681..6e79915527 100644 --- a/packages/acpid/acpid.inc +++ b/packages/acpid/acpid.inc @@ -16,6 +16,7 @@ do_compile () { } do_install () { + install -d ${D}${bindir} oe_runmake 'INSTPREFIX=${D}' install install -d ${D}${sysconfdir}/init.d cat ${WORKDIR}/init | sed -e's,/usr/sbin,${sbindir},g' > ${D}${sysconfdir}/init.d/acpid diff --git a/packages/acpid/acpid_1.0.4.bb b/packages/acpid/acpid_1.0.4.bb index 640acd5203..f48c262254 100644 --- a/packages/acpid/acpid_1.0.4.bb +++ b/packages/acpid/acpid_1.0.4.bb @@ -1,4 +1,4 @@ require acpid.inc SRC_URI += "file://gcc40.patch;patch=1" -PR = "r2" +PR = "r3" |