From a2002564518aee282c9333e555db7afe0bc8a92b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 9 Oct 2013 20:11:18 +0000 Subject: Fix windows scons OSL build error, just use quotes now instead of array. --- intern/cycles/kernel/shaders/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern') diff --git a/intern/cycles/kernel/shaders/SConscript b/intern/cycles/kernel/shaders/SConscript index 12143e7f6e9..8bc1c2206e0 100644 --- a/intern/cycles/kernel/shaders/SConscript +++ b/intern/cycles/kernel/shaders/SConscript @@ -57,7 +57,7 @@ if env['WITH_BF_CYCLES_OSL']: osl_file = os.path.join(source_dir, f) oso_file = os.path.join(build_dir, f.replace('.osl', '.oso')) - command = [osl_compiler, "-q", "-O2", "-I", source_dir, oso_file, osl_file] + command = "\"%s\" -q -O2 -I\"%s\" -o \"%s\" \"%s\"" % (osl_compiler, source_dir, oso_file, osl_file) shaders.Command(oso_file, f, command) shaders.Depends(oso_file, [f] + dependencies) -- cgit v1.2.3