mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 19:23:03 +01:00
10 lines
240 B
Plaintext
10 lines
240 B
Plaintext
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
|
|
}
|