To avoid confusion, let's make it impossible to run makepanda without any of the --everything, --nothing, --use-*, --no-* flags.

This commit is contained in:
rdb 2010-03-15 07:48:52 +00:00
parent dd2b42eaf1
commit 4f1e88cc70

View File

@ -148,6 +148,8 @@ def parseopts(args):
if (option=="--no-"+pkg.lower()):
PkgDisable(pkg)
break
if (option=="--everything" or option.startswith("--use-")
or option=="--nothing" or option.startswith("--no-")):
anything = 1
except: usage(0)
if (anything==0): usage(0)