From 523c9ff0d11b8113fb53a0138813dc03c476bf6a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 14 Nov 2017 09:47:08 +0530 Subject: [PATCH] Make incremental building the default --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 19659800a..05c3a4db4 100755 --- a/setup.py +++ b/setup.py @@ -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',