From abf1f461c7d34a00fd2a7348c3d91f10bf382c43 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Fri, 20 Nov 2015 13:54:09 -0800 Subject: fix bootstrap.py issue where changes weren't updating bootstrap dir. filecmp.cmp(a,b) returns False when files aren't equal. The opposite of the expected return value --- bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index 90917dc..08df11d 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -129,7 +129,7 @@ def main(): def must_copy(dst, src): if not os.path.exists(dst): return 1 - return filecmp.cmp(dst,src) + return not filecmp.cmp(dst,src) # Note: We don't use the getopt module to process the command-line # arguments because we'd have to teach it about all of the SCons options. -- cgit v0.12