diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-08-08 21:54:08 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-08 21:54:08 +0000 |
commit | 7bd9307812da15188cfc5fc7a3b23f3a534c2caf (patch) | |
tree | fd5cc0d80f3c582af3968c43026ae90e657329fc /packages/edb | |
parent | 2807a92f94e9dcdecc51699ca95506a6e3737dc0 (diff) |
e-libs: yank do_install() in all -native packages or else our precously crafted foo-config will get
overridden with what becomes foo-config-native... grrrr!
Diffstat (limited to 'packages/edb')
-rw-r--r-- | packages/edb/edb-native_1.0.5.004.bb | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/packages/edb/edb-native_1.0.5.004.bb b/packages/edb/edb-native_1.0.5.004.bb index b570683020..59cb8da587 100644 --- a/packages/edb/edb-native_1.0.5.004.bb +++ b/packages/edb/edb-native_1.0.5.004.bb @@ -1,16 +1,14 @@ -DESCRIPTION = "EDB is a database convenience library wrapped around the \ -Berkeley DB 2.7.7 by Sleepycat Software." -LICENSE = "BSD" -HOMEPAGE = "http://www.enlightenment.org" -MAINTAINER = "Carsten Haitzler (Rasterman) <raster@rasterman.com>" -SECTION = "e/libs" -PRIORITY = "optional" include edb_${PV}.bb inherit native DEPENDS = "zlib-native" do_stage () { - install -m 0755 tools/.libs/edb_ed ${STAGING_BINDIR} - oe_libinstall -C src libedb ${STAGING_LIBDIR}/ - install -m 0644 ${S}/src/Edb.h ${STAGING_INCDIR}/ + install -m 0755 tools/.libs/edb_ed ${STAGING_BINDIR} + oe_libinstall -C src libedb ${STAGING_LIBDIR}/ + install -m 0644 ${S}/src/Edb.h ${STAGING_INCDIR}/ } + +do_install() { + : +} + |