diff options
author | Tom Rini <trini@embeddedalley.com> | 2009-04-17 16:24:46 -0400 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2009-04-17 16:24:46 -0400 |
commit | c8b3cc5ef81d305d5d90644da36acbc40c7c01f1 (patch) | |
tree | c5780e1ec137dd4cf71d54ba07e41d7795148b75 /recipes/opkg/opkg.inc | |
parent | 49a720ff8597243a906d7c0f9278ca8f1f9ff670 (diff) | |
parent | a4f79016c537fc93e5a487d51a22fb4d01e9afe8 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
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 } |