48a20e9337
validatePkgConfig failed due to a wrong variable scope, as reported in issue #100834. This change corrects the variable scoping.
19 lines
448 B
Bash
19 lines
448 B
Bash
# This setup hook validates each pkgconfig file in each output.
|
|
|
|
fixupOutputHooks+=(_validatePkgConfig)
|
|
|
|
_validatePkgConfig() {
|
|
local bail=0
|
|
for pc in $(find "$prefix" -name '*.pc'); do
|
|
# Do not fail immediately. It's nice to see all errors when
|
|
# there are multiple pkgconfig files.
|
|
if ! pkg-config --validate "$pc"; then
|
|
bail=1
|
|
fi
|
|
done
|
|
|
|
if [ $bail -eq 1 ]; then
|
|
exit 1
|
|
fi
|
|
}
|