RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Ralf S. Engelschall
Root: /v/rpm/cvs Email: rse@rpm5.org
Module: rpm Date: 26-Jun-2007 22:30:28
Branch: HEAD Handle: 2007062621302800
Modified files:
rpm configure.ac
Log:
ops, fix the remaining implict flags handling after I've removed the
surrounding loops
Summary:
Revision Changes Path
2.143 +3 -3 rpm/configure.ac
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/configure.ac
============================================================================
$ cvs diff -u -r2.142 -r2.143 configure.ac
--- rpm/configure.ac 26 Jun 2007 19:21:13 -0000 2.142
+++ rpm/configure.ac 26 Jun 2007 20:30:28 -0000 2.143
@@ -168,10 +168,10 @@
if test "$cross_compiling" != "yes" && \
test ".$prefix" != .NONE && \
test ".$prefix" != "./usr"; then
- if test -d $dir/lib; then
- addlib $dir/lib
+ if test -d $prefix/lib; then
+ addlib $prefix/lib
fi
- if test -d $dir/include; then
+ if test -d $prefix/include; then
CPPFLAGS="$CPPFLAGS -I$prefix/include"
fi
fi
@@ .
Received on Tue Jun 26 22:30:28 2007