diff options
Diffstat (limited to 'core/math/SCsub')
-rw-r--r-- | core/math/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/SCsub b/core/math/SCsub index 4efc902717..be438fcfbe 100644 --- a/core/math/SCsub +++ b/core/math/SCsub @@ -2,6 +2,6 @@ Import('env') -env.add_source_files(env.core_sources, "*.cpp") +env_math = env.Clone() -Export('env') +env_math.add_source_files(env.core_sources, "*.cpp") |