summaryrefslogtreecommitdiffstats
path: root/meta/classes/pkgconfig_stage.bbclass
blob: fae2ee024e7b6df2e6827fb053cd48e9a0c42256 (plain)
1
2
3
4
5
6
7
do_stage_append () {
	install -d ${PKG_CONFIG_DIR}
	for pc in `find ${S} -name '*.pc' -type f | grep -v -- '-uninstalled.pc$'`; do
		pcname=`basename $pc`
		cat $pc > ${PKG_CONFIG_DIR}/$pcname
	done
}