aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2013-06-04 11:16:06 +0000
committerColin Guthrie <colin@mageia.org>2013-06-04 11:16:06 +0000
commit89c5b5e6da757e753dadd67e272eb70f05a845b9 (patch)
treef8b1ce55ec6ad0b104f7639d6565ca3d0492fcab
parent833b45b2de74d6bea30f822668d07f89759581d0 (diff)
downloadrpm-setup-89c5b5e6da757e753dadd67e272eb70f05a845b9.tar
rpm-setup-89c5b5e6da757e753dadd67e272eb70f05a845b9.tar.gz
rpm-setup-89c5b5e6da757e753dadd67e272eb70f05a845b9.tar.bz2
rpm-setup-89c5b5e6da757e753dadd67e272eb70f05a845b9.tar.xz
rpm-setup-89c5b5e6da757e753dadd67e272eb70f05a845b9.zip
Add pkgconfig package requires for private requires
-rw-r--r--NEWS2
-rwxr-xr-xpkgconfigdeps.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index c7be022..126819d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- add pkgconfig package requires for private requires
+
Version 1.171 - 6 April 2013, by David Walser
- properly fix mga #3697 in find-lang.pl (only exclude man directories)
- own man pages that have a dot in their name (find-lang.pl regexp bug)
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