diff options
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 } |