blob: 22a9cd00728f31f9c12f67024fad89717fef3e7d (
plain)
1
2
3
4
5
6
7
8
9
|
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
}
|