changed default to "no clean". if clean-up required, use '--clean' option!

This commit is contained in:
Philip Eisenlohr 2011-06-15 16:40:34 +00:00
parent 480021e788
commit 3985a98da7
1 changed files with 1 additions and 1 deletions

View File

@ -31,5 +31,5 @@ for arch in architectures:
os.system('make --directory %s'%wd)
if not '--noclean' in [s.lower() for s in sys.argv]:
if '--clean' in [s.lower() for s in sys.argv]:
os.system('make --directory %s clean'%wd)