@ -81,9 +81,9 @@ option disables that.
submodules at specific revisions.
submodules at specific revisions.
''')
''')
g.add_option('--dis able-header-checks', action='store_true',
g.add_option('--en able-header-checks', action='store_true',
default=False,
default=False,
help="Dis able checking of headers")
help="En able checking of headers")
g.add_option('--default-parameters',
g.add_option('--default-parameters',
default=None,
default=None,
@ -218,11 +218,11 @@ def configure(cfg):
cfg.msg('Setting rsync destination to', cfg.options.rsync_dest)
cfg.msg('Setting rsync destination to', cfg.options.rsync_dest)
cfg.env.RSYNC_DEST = cfg.options.rsync_dest
cfg.env.RSYNC_DEST = cfg.options.rsync_dest
if cfg.options.dis able_header_checks:
if cfg.options.en able_header_checks:
cfg.msg('Disabling header checks', cfg.options.dis able_header_checks)
cfg.msg('Enabling header checks', cfg.options.en able_header_checks)
cfg.env.DIS ABLE_HEADER_CHECKS = True
cfg.env.EN ABLE_HEADER_CHECKS = True
else:
else:
cfg.env.DIS ABLE_HEADER_CHECKS = False
cfg.env.EN ABLE_HEADER_CHECKS = False
# TODO: Investigate if code could be changed to not depend on the
# TODO: Investigate if code could be changed to not depend on the
# source absolute path.
# source absolute path.