Hi Rainer, Am Sonntag, 17. November 2013, 12:47:53 schrieb Rainer Jung: > > URL: http://svn.apache.org/r1542615 > > Log: > > Explicitly list in which directories to look for config*.m4 files. > >
> > --- httpd/httpd/trunk/build/config-stubs (original) > > +++ httpd/httpd/trunk/build/config-stubs Sat Nov 16 23:49:04 2013 > > @@ -15,7 +15,7 @@ > > > > # config files without a number are sorted before those with a > > number. # > > > > -configfiles=`find . -name "config*.m4" | \ > > +configfiles=`find os server modules support -name "config*.m4" | > > \ > > Couldn't we use > > configfiles=`find . -name ".*" -prune -o -name "config*.m4" | \ > > That would disable recuring into any directory starting with a dot > and thus we wouldn't have to maintain a list of known good > directories. > > WDYT? I am not convinced that this would be better. If apr or another lib in srclib/ one day ships a config*.m4 file, we don't want to include that either. Or if debian packagers for whatever reason such a file in debian/. And we won't have to update that list very often, the top- level directories haven't changed since 1.x. Cheers, Stefan
