
Rene Rivera wrote:
Jens Seidel wrote:
On Sat, Mar 22, 2008 at 03:00:18PM -0500, Rene Rivera wrote:
Jens Seidel wrote:
Only 297 files left :-) Hm, that seems like a rather tedious route. This is a bit shorter and covers all the cases we currently have in for our auto-props:
find . -regextype posix-extended -type f \ -not -regex ".*[/][.]svn[/].*" \ -not -regex ".*([.]pl|[.]py|[.]sh|configure)" \ --exec svn propdel svn:executable "{}" ";" The following would be wrongly changed:
./tools/jam/src/debian/rules ./tools/jam/src/boehm_gc/config.sub ./tools/jam/src/boehm_gc/install-sh ./tools/jam/src/boehm_gc/missing ./tools/jam/src/boehm_gc/depcomp ./tools/jam/src/boehm_gc/callprocs ./tools/jam/src/boehm_gc/config.guess ./tools/jam/src/boehm_gc/compile ./tools/jam/src/boehm_gc/mkinstalldirs ./libs/graph/doc/mungeaux.csh ./libs/mpl/preprocessed/preprocess.cmd ./libs/iterator/doc/rst2latex
I went with:
C:\DevRoots\Boost\boost-release>find.exe . -type f -not -regex ".*[/][.]svn[/].*" -not -regex ".*\([.]bat\|[.]cmd\|[.] com\|[.]csh\|[.]m4\|[.]pl\|[.]py\|[.]sh\|configure\|rst2latex\)" -exec svn propdel "svn:executable" "{}" ";"
And then ignored the jam changes. So this should now be fixed in the release branch. I'm applying the same procedure to trunk now.
Thanks, Jens and Rene! I've opened a ticket (1706) and will add something to the inspect program to detect regressions. --Beman