RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Jeff Johnson
Root: /v/rpm/cvs Email: jbj@rpm5.org
Module: rpm Date: 17-Aug-2008 21:02:06
Branch: HEAD Handle: 2008081719020501
Modified files:
rpm CHANGES
rpm/scripts pkgconfigdeps.sh
Log:
- WR: rely on PATH to find pkg-config.
Summary:
Revision Changes Path
1.2521 +1 -0 rpm/CHANGES
1.3 +1 -1 rpm/scripts/pkgconfigdeps.sh
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/CHANGES
============================================================================
$ cvs diff -u -r1.2520 -r1.2521 CHANGES
--- rpm/CHANGES 17 Aug 2008 18:55:15 -0000 1.2520
+++ rpm/CHANGES 17 Aug 2008 19:02:05 -0000 1.2521
@@ -1,5 +1,6 @@
5.1.0 -> 5.2a0:
+ - jbj: WR: rely on PATH to find pkg-config.
- jbj: WR: don't spew error messages with internal lua shadow module.
- jbj: WR: add shadow/chkconfig internal lua modules.
- jbj: WR: Color/arch affinity while upgrading on multilib platforms.
@@ .
patch -p0 <<'@@ .'
Index: rpm/scripts/pkgconfigdeps.sh
============================================================================
$ cvs diff -u -r1.2 -r1.3 pkgconfigdeps.sh
--- rpm/scripts/pkgconfigdeps.sh 25 May 2007 18:34:16 -0000 1.2
+++ rpm/scripts/pkgconfigdeps.sh 17 Aug 2008 19:02:06 -0000 1.3
@@ -1,6 +1,6 @@
#!/bin/bash
-pkgconfig=/usr/bin/pkg-config
+pkgconfig=`which pkg-config`
test -x $pkgconfig || {
cat > /dev/null
exit 0
@@ .
Received on Sun Aug 17 21:02:06 2008