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: 17-Jul-2007 21:13:24
Branch: HEAD Handle: 2007071720132400
Modified files:
rpm acinclude.m4
Log:
during recursive searching of <prefix>, ignore any warnings on stderr
resulting from system directories the configure/build user usually has
no permission on
Summary:
Revision Changes Path
2.17 +2 -2 rpm/acinclude.m4
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/acinclude.m4
============================================================================
$ cvs diff -u -r2.16 -r2.17 acinclude.m4
--- rpm/acinclude.m4 29 Jun 2007 15:57:53 -0000 2.16
+++ rpm/acinclude.m4 17 Jul 2007 19:13:24 -0000 2.17
@@ -342,7 +342,7 @@
fi
dnl # in any sub-area
if test ".${__rcl_found}" = .no; then
- for __rcl_file in _ `find ${__rcl_location} -name "$5" -type f -print`; do
+ for __rcl_file in _ `find ${__rcl_location} -name "$5" -type f -print 2>/dev/null`; do
test .${__rcl_file} = ._ && continue
__rcl_dir=`echo ${__rcl_file} | sed -e 's;[[^/]]*[$];;' -e 's;\(.\)/[$];\1;'`
if test ".${__rcl_dir}" != "./usr/include"; then
@@ -355,7 +355,7 @@
if test ".${__rcl_found}" = .yes; then
__rcl_found=no
m4_foreach_w([__rcl_lib], [$3], [
- for __rcl_file in _ `find ${__rcl_location} -name "lib[]m4_defn([__rcl_lib]).*" -type f -print | \
+ for __rcl_file in _ `find ${__rcl_location} -name "lib[]m4_defn([__rcl_lib]).*" -type f -print 2>/dev/null | \
egrep '\.(a|so|sl|dylib)$'`; do
test .${__rcl_file} = ._ && continue
__rcl_dir=`echo ${__rcl_file} | sed -e 's;[[^/]]*[$];;' -e 's;\(.\)/[$];\1;'`
@@ .
Received on Tue Jul 17 21:13:24 2007