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,7 +148,9 @@ def parseopts(args):
if (option=="--no-"+pkg.lower()): if (option=="--no-"+pkg.lower()):
PkgDisable(pkg) PkgDisable(pkg)
break break
anything = 1 if (option=="--everything" or option.startswith("--use-")
or option=="--nothing" or option.startswith("--no-")):
anything = 1
except: usage(0) except: usage(0)
if (anything==0): usage(0) if (anything==0): usage(0)
if (RTDIST and RUNTIME): if (RTDIST and RUNTIME):