diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-10-13 07:52:29 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2006-10-13 07:52:29 +0000 |
commit | 2de2711091ecf78d37a4dbf7abd2ac912bdd744b (patch) | |
tree | 426a980206b72328705beeca6903ee131ebe4cf4 | |
parent | 01bb2d8b4bd3365e2e73f07125da369796abee9e (diff) |
clamav 0.84: Don't stage the libraries libtool archive file, libclamav.la,
as things fail to link when they try and use it. They link fine if it
doesn't exist so remove it.
-rw-r--r-- | packages/clamav/clamav_0.88.4.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/clamav/clamav_0.88.4.bb b/packages/clamav/clamav_0.88.4.bb index 1395253019..9cb432d579 100644 --- a/packages/clamav/clamav_0.88.4.bb +++ b/packages/clamav/clamav_0.88.4.bb @@ -15,7 +15,7 @@ RDEPENDS_${PN} = "${PN}-data" RDEPENDS_${PN}-daemon = "${PN}-data" RRECOMMENDS_${PN} = "${PN}-freshclam" RRECOMMENDS_${PN}-daemon = "${PN}-freshclam" -PR = "r5" +PR = "r6" SRC_URI = "${SOURCEFORGE_MIRROR}/clamav/clamav-${PV}.tar.gz \ file://cross-compile-fix.patch;patch=1 \ @@ -66,6 +66,7 @@ do_install_append() { } do_stage () { oe_libinstall -a -so libclamav ${STAGING_LIBDIR} + rm -f ${STAGING_LIBDIR}/libclamav.la install -m 0644 libclamav/clamav.h ${STAGING_INCDIR} } |