diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-30 19:11:33 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-30 19:11:36 +0200 |
commit | 3334209a732737274a8598191267573fcb989a99 (patch) | |
tree | 43604e5f97bc11a9ba2c2e8720a49c0a1d6d0c5b /modules/hdr | |
parent | 28fa82c2defacca8ccad5c26022d2eeaee925f4f (diff) |
SCons: Pass env to modules can_build method
This allows to disable modules based on the environment,
in particular `env[tools]` which tells us if we are
building the editor or not.
Diffstat (limited to 'modules/hdr')
-rw-r--r-- | modules/hdr/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hdr/config.py b/modules/hdr/config.py index 5f133eba90..1c8cd12a2d 100644 --- a/modules/hdr/config.py +++ b/modules/hdr/config.py @@ -1,4 +1,4 @@ -def can_build(platform): +def can_build(env, platform): return True def configure(env): |