On Sat, Feb 04, 2006 at 02:41:06AM -0000, William Rowe wrote: > Author: wrowe > Date: Fri Feb 3 18:41:02 2006 > New Revision: 374821 > > URL: http://svn.apache.org/viewcvs?rev=374821&view=rev > Log: > Solaris build proposal; don't fail on missing .h files within > a VPATH build, and don't test trees with -d (simply -f the > expected files) in case a tree such as srclib/apr is actually > a symlink rather than a true directory in ./buildconf.
What's the below change for, is it related to the rest of these changes? Losing stderr does not look sensible. > Modified: httpd/httpd/trunk/server/Makefile.in > URL: > http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/Makefile.in?rev=374821&r1=374820&r2=374821&view=diff > ============================================================================== > --- httpd/httpd/trunk/server/Makefile.in (original) > +++ httpd/httpd/trunk/server/Makefile.in Fri Feb 3 18:41:02 2006 > @@ -59,8 +59,7 @@ > ls $$dir/*.h >> $$tmp; \ > done; \ > for dir in $(EXPORT_DIRS_APR); do \ > - ls $$dir/ap[ru].h >> $$tmp; \ > - ls $$dir/ap[ru]_*.h >> $$tmp; \ > + (ls $$dir/ap[ru].h $$dir/ap[ru]_*.h >> $$tmp 2>/dev/null); \ > done; \ > sort -u $$tmp > $@; \ > rm -f $$tmp >
