diff options
author | Koen Kooi <koen@openembedded.org> | 2009-04-17 18:43:53 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-04-17 18:43:53 +0200 |
commit | 012465dda978446b0874a4c628d261b29f23b98c (patch) | |
tree | ad1434eb0067ef47befbf278b3c1d628dec30171 /recipes/opkg/opkg.inc | |
parent | c838626c2b210596ad126944966b78b0c68ebf13 (diff) |
opkg: only ping splash when splashfuncs are present
Diffstat (limited to 'recipes/opkg/opkg.inc')
-rw-r--r-- | recipes/opkg/opkg.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes/opkg/opkg.inc b/recipes/opkg/opkg.inc index be8287734b..e986c8deb6 100644 --- a/recipes/opkg/opkg.inc +++ b/recipes/opkg/opkg.inc @@ -7,10 +7,18 @@ PV = "0.1.6+svnr${SRCREV}" SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;proto=http \ file://opkg_unarchive.patch;patch=1;maxrev=201" + +SRC_URI += "file://configure" + S = "${WORKDIR}/trunk" inherit autotools pkgconfig +do_install_prepend() { + install -d ${D}${sysconfdir}/rcS.d + install -m 0755 ${WORKDIR}/configure ${D}${sysconfdir}/rcS.d/S98configure +} + do_stage() { autotools_stage_all } |