diff options
author | Rhody Lugo <rhodylugo@gmail.com> | 2018-06-21 00:33:25 -0400 |
---|---|---|
committer | Rhody Lugo <rhodylugo@gmail.com> | 2018-06-21 03:00:33 -0400 |
commit | 920224a535f7858dd4bf39f04e3c90c8276503c3 (patch) | |
tree | d1f1a52a960146cbd8de2076819fa09e45f7bdba /core/SCsub | |
parent | a9acdd84b7a6fd074f21d500a64976326f6cbb67 (diff) |
add NoCache wrapper to Command
Diffstat (limited to 'core/SCsub')
-rw-r--r-- | core/SCsub | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/SCsub b/core/SCsub index c4f1cdbe97..c508ecc37e 100644 --- a/core/SCsub +++ b/core/SCsub @@ -93,19 +93,19 @@ env.add_source_files(env.core_sources, "*.cpp") # Make binders import make_binders -env.Command(['method_bind.gen.inc', 'method_bind_ext.gen.inc'], 'make_binders.py', make_binders.run) +env.CommandNoCache(['method_bind.gen.inc', 'method_bind_ext.gen.inc'], 'make_binders.py', make_binders.run) # Authors env.Depends('#core/authors.gen.h', "../AUTHORS.md") -env.Command('#core/authors.gen.h', "../AUTHORS.md", methods.make_authors_header) +env.CommandNoCache('#core/authors.gen.h', "../AUTHORS.md", methods.make_authors_header) # Donors env.Depends('#core/donors.gen.h', "../DONORS.md") -env.Command('#core/donors.gen.h', "../DONORS.md", methods.make_donors_header) +env.CommandNoCache('#core/donors.gen.h', "../DONORS.md", methods.make_donors_header) # License env.Depends('#core/license.gen.h', ["../COPYRIGHT.txt", "../LICENSE.txt"]) -env.Command('#core/license.gen.h', ["../COPYRIGHT.txt", "../LICENSE.txt"], methods.make_license_header) +env.CommandNoCache('#core/license.gen.h', ["../COPYRIGHT.txt", "../LICENSE.txt"], methods.make_license_header) # Chain load SCsubs SConscript('os/SCsub') |