# HG changeset patch # User Andrey Mazo # Date 1265709107 -10800 # Node ID fc21b54aab9ca7f761cdfed2b60389b0e26495aa # Parent 36c591bbdabdd04ec8a61b9ac6191a404720b65a Bug 801: ns-3.7 and SVN not coexisting nicely (omit CVS and .* folders from examples) diff -r 36c591bbdabd -r fc21b54aab9c wscript --- a/wscript Mon Feb 08 22:45:39 2010 -0800 +++ b/wscript Tue Feb 09 12:51:47 2010 +0300 @@ -475,6 +475,8 @@ env = bld.env_of_name('default') if env['ENABLE_EXAMPLES']: for dir in os.listdir('examples'): + if dir.startswith('.') or dir == 'CVS': + continue if os.path.isdir(os.path.join('examples', dir)): bld.add_subdirs(os.path.join('examples', dir))