diff options
author | KonaBlend <[email protected]> | 2015-10-29 19:08:32 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2016-05-25 15:45:04 -0400 |
commit | 4de3e38af5e5bf57d59984eef6a67a76bad1831f (patch) | |
tree | c8b7209126906c8b3cc54c44c07f393cee50cd5a /make/configure.py | |
parent | 8a3e309341dfe95601d4e4a42045f4cafa77c11c (diff) |
Build: add configure --df-exhaust-url
Specifying this option will cause fetching to run through all
active URLs. Decent way to test all URLs.
Diffstat (limited to 'make/configure.py')
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make/configure.py b/make/configure.py index e27b477fa..cf1894fb0 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1192,6 +1192,7 @@ def encodeDistfileConfig(): 'verbosity': options.df_verbosity, 'accept-url': options.df_accept_url, 'deny-url': options.df_deny_url, + 'exhaust-url': options.df_exhaust_url, } try: try: @@ -1265,6 +1266,7 @@ def createCLI(): grp.add_option( '--df-verbose', default=1, action='count', dest='df_verbosity', help='increase distfile tools verbosity' ) grp.add_option( '--df-accept-url', default=[], action='append', metavar='SPEC', help='accept URLs matching regex pattern' ) grp.add_option( '--df-deny-url', default=[], action='append', metavar='SPEC', help='deny URLs matching regex pattern' ) + grp.add_option( '--df-exhaust-url', default=False, action='store_true', help='try all active distfiles' ) cli.add_option_group( grp ) ## add install options |