From: Michael Lauer Date: Sun, 23 Mar 2008 16:17:03 +0000 (+0000) Subject: autotools.bbclass: enable installing .pc files on demand X-Git-Tag: Release-2010-05/1~7297 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a66c459e7428e3953c603be1349c222bbd00e8b6;p=openembedded.git autotools.bbclass: enable installing .pc files on demand (see file for lenghty explanation) --- 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