1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-10 05:49:28 +00:00
Files
poky/meta/classes/pkgconfig.bbclass
T
2007-11-12 11:30:16 +00:00

12 lines
254 B
Plaintext

inherit base
DEPENDS_prepend = "pkgconfig-native "
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
}