From: Jakub Bogusz Date: Sun, 8 Apr 2007 19:42:23 +0000 (+0000) Subject: - don't output pkgconfig dependency for all *.pc found X-Git-Tag: auto/th/rpm-build-macros-1_382-1~8 X-Git-Url: http://git.pld-linux.org/?p=packages%2Frpm.git;a=commitdiff_plain;h=20528342a4dfbfa39010932d921fc7c07ca6e625;hp=e4cb686f11a08ea9f51e4358240d585cb748ba92 - don't output pkgconfig dependency for all *.pc found Changed files: rpm-pkgconfigdeps.patch -> 1.1 --- diff --git a/rpm-pkgconfigdeps.patch b/rpm-pkgconfigdeps.patch new file mode 100644 index 0000000..9cc82f5 --- /dev/null +++ b/rpm-pkgconfigdeps.patch @@ -0,0 +1,11 @@ +--- rpm-4.4.8/scripts/pkgconfigdeps.sh.orig 2007-02-14 08:09:42.000000000 +0100 ++++ rpm-4.4.8/scripts/pkgconfigdeps.sh 2007-04-08 21:39:49.283342196 +0200 +@@ -31,8 +31,6 @@ + case "${filename}" in + *.pc) + $pkgconfig --print-requires "$filename" 2> /dev/null | while read n r v ; do +- i="`expr $i + 1`" +- [ $i -eq 1 ] && echo "pkgconfig" + echo "pkgconfig($n)" "$r" "$v" + done + esac