diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-04-04 17:17:50 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-04-04 17:17:50 +0000 |
commit | c72b4cf97ca4e3b5cad4b9e51dee4d571b7e5e0a (patch) | |
tree | fe1b6a9669a4bd078b0357412a65e97c96a01aa5 | |
parent | 10a4ae270e88fc15be3c3b4feeb3b34fd125cf63 (diff) |
libol: use binconfig class to install libol-config (from Poky)
-rw-r--r-- | packages/libol/libol_0.3.18.bb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/libol/libol_0.3.18.bb b/packages/libol/libol_0.3.18.bb index 9484f8e99e..b8ad9b30ac 100644 --- a/packages/libol/libol_0.3.18.bb +++ b/packages/libol/libol_0.3.18.bb @@ -1,15 +1,13 @@ -PR = "r6" +PR = "r7" SRC_URI = "http://www.balabit.com/downloads/libol/0.3/${P}.tar.gz" S = "${WORKDIR}/${PN}-${PV}" -inherit autotools +inherit autotools binconfig do_stage() { - install -d ${STAGING_BINDIR_CROSS} install -d ${STAGING_INCDIR}/libol - install -m 0755 ${S}/libol-config ${STAGING_BINDIR_CROSS}/ install -m 0755 ${S}/src/.libs/libol.so.0.0.0 ${STAGING_LIBDIR}/ ln -fs ${STAGING_LIBDIR}/libol.so.0.0.0 ${STAGING_LIBDIR}/libol.so.0 install ${S}/src/*.h ${STAGING_INCDIR}/libol/ |