From a66c459e7428e3953c603be1349c222bbd00e8b6 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Sun, 23 Mar 2008 16:17:03 +0000 Subject: autotools.bbclass: enable installing .pc files on demand (see file for lenghty explanation) --- classes/autotools.bbclass | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'classes/autotools.bbclass') diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass index 1f03825b92..53480e5a15 100644 --- a/classes/autotools.bbclass +++ b/classes/autotools.bbclass @@ -214,6 +214,18 @@ autotools_stage_all() { echo "cp -fpPR ${STAGE_TEMP}/${libdir}/* ${STAGING_LIBDIR}" cp -fpPR ${STAGE_TEMP}/${libdir}/* ${STAGING_LIBDIR} fi + + fi + # Ok, this is nasty. pkgconfig.bbclass is usually used to install .pc files, + # however some packages rely on the presence of .pc files to enable/disable + # their configurataions in which case we better should not install everything + # unconditionally, but rather depend on the actual results of make install. + # The good news though: a) there are not many packages doing this and + # b) packaged staging will fix that anyways. :M: + if [ "${AUTOTOOLS_STAGE_PKGCONFIG}" = "1" ] + then + echo "cp -f ${STAGE_TEMP}/${libdir}/pkgconfig/*.pc ${STAGING_LIBDIR}/pkgconfig/" + cp -f ${STAGE_TEMP}/${libdir}/pkgconfig/*.pc ${STAGING_LIBDIR}/pkgconfig/ fi rm -rf ${STAGE_TEMP}/${mandir} || true rm -rf ${STAGE_TEMP}/${infodir} || true -- cgit v1.2.3