diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2006-01-03 02:08:32 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-03 02:08:32 +0000 |
commit | 6377266f6adf67628c086070bad26e13ebbde817 (patch) | |
tree | f10543f0fd62eb466bc757d8ac55078806de76f2 /packages/openobex | |
parent | 7039ccd1332286801a661dfe98df90987b1c0481 (diff) |
openobex: change do_stage to use autotools_stage_all in 1.0.1
Diffstat (limited to 'packages/openobex')
-rw-r--r-- | packages/openobex/openobex_1.0.1.bb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/packages/openobex/openobex_1.0.1.bb b/packages/openobex/openobex_1.0.1.bb index c3b1562e8d..fd38d372f6 100644 --- a/packages/openobex/openobex_1.0.1.bb +++ b/packages/openobex/openobex_1.0.1.bb @@ -3,7 +3,7 @@ DESCRIPTION = "The Openobex project aims to make an \ open source implementation of the Object Exchange \ (OBEX) protocol." SECTION = "libs" -PR = "r2" +PR = "r3" # put openobex-config into -dev package FILES_${PN} = "${libdir}/lib*.so.*" @@ -15,10 +15,5 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/openobex/openobex-${PV}.tar.gz \ inherit autotools binconfig do_stage () { - oe_libinstall -so -C src libopenobex ${STAGING_LIBDIR} - ln -sf libopenobex.so ${STAGING_LIBDIR}/libopenobex-1.0.so - install -d ${STAGING_INCDIR}/openobex - install -m 0644 src/obex_const.h src/obex.h ${STAGING_INCDIR}/openobex/ - install -d ${STAGING_DIR}/aclocal - install -m 0644 m4macros/openobex.m4 ${STAGING_DATADIR}/aclocal/ + autotools_stage_all } |