aboutsummaryrefslogtreecommitdiffstats
path: root/pkgconfigdeps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgconfigdeps.sh')
-rwxr-xr-xpkgconfigdeps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgconfigdeps.sh b/pkgconfigdeps.sh
index b4dc125..0b7179e 100755
--- a/pkgconfigdeps.sh
+++ b/pkgconfigdeps.sh
@@ -49,7 +49,7 @@ case $1 in
done
if [ -n "$pcfiles" ]
then
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH $pkgconfig --print-errors --print-requires ${pcfiles} | while read n r v ; do
+ PKG_CONFIG_PATH=$PKG_CONFIG_PATH $pkgconfig --print-errors --print-requires --print-requires-private ${pcfiles} | while read n r v ; do
test -z "$v" && test -n "$r" && echo "Error with pkgconfig($n)" >&2 && exit 1
echo "pkgconfig($n)" "$r" "$v"
done