From 54d8fc81ddcb42b6a43bb2bd830a97598b488226 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 19 Jul 2013 12:15:24 -0400 Subject: [PATCH] scons: ensure optional imaging libaries are build if requested when cross compiling --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SConstruct b/SConstruct index af85ee655..dab5372e0 100644 --- a/SConstruct +++ b/SConstruct @@ -1338,6 +1338,8 @@ if not preconfigured: env['SKIPPED_DEPS'].append(libname) else: env.Append(CPPDEFINES = define) + else: + env.Append(CPPDEFINES = define) env['REQUESTED_PLUGINS'] = [ driver.strip() for driver in Split(env['INPUT_PLUGINS'])]