Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-01-23 12:48:52 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-01-23 12:48:52 +0400
commitd2f8be9aa24551e585fa39a82c56a3ffe85b825b (patch)
tree565e15cf411a61e9e5695f8381d443f4c6797857 /intern
parentbe69b8b4fd6432694ff9b3faeefe281344b77081 (diff)
Fix for compilation error when using scons and carve is disabled
Diffstat (limited to 'intern')
-rw-r--r--intern/boolop/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/boolop/SConscript b/intern/boolop/SConscript
index 0efed532cb9..1c8c912614d 100644
--- a/intern/boolop/SConscript
+++ b/intern/boolop/SConscript
@@ -8,6 +8,7 @@ incs += ' ../../source/blender/blenlib'
defs = []
if not env['WITH_BF_CARVE']:
+ import os
sources = env.Glob('intern/*.cpp')
sources.remove('intern' + os.sep + 'BOP_CarveInterface.cpp')
else: