Make incremental building the default

This commit is contained in:
Kovid Goyal 2017-11-14 09:47:08 +05:30
parent a02fd8411a
commit 523c9ff0d1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -320,10 +320,11 @@ def option_parser():
help='Where to create the linux package'
)
p.add_argument(
'--incremental',
default=False,
action='store_true',
help='Only build changed files'
'--full',
dest='incremental',
default=True,
action='store_false',
help='Do a full build, even for unchanged files'
)
p.add_argument(
'--profile',