From 558f453dde626d56097c1c32b73734a93e9be6ff Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Sat, 20 Sep 2008 10:24:00 +0000 Subject: [PATCH] more scons fixes git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@584 8ced0084-cf51-0410-be5f-012b33b47a6e --- SConstruct | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/SConstruct b/SConstruct index 66576d1edc..cc0df0a3c6 100644 --- a/SConstruct +++ b/SConstruct @@ -112,7 +112,7 @@ env = Environment( CXX = 'g++', CCFLAGS = ' '.join(compileFlags), CXXFLAGS = ' '.join(compileFlags + [ '-fvisibility-inlines-hidden' ]), - CPPDEFINES = cppDefines, + CPPDEFINES = cppDefines, CPPPATH = include_paths, LIBPATH = lib_paths, variables = vars, @@ -121,11 +121,11 @@ env = Environment( 'HOME' : os.environ['HOME'] }, BUILDERS = builders, - DESCRIPTION = description, - SUMMARY = description, - LICENSE = license, - NAME = name, - VERSION = version, + DESCRIPTION = description, + SUMMARY = description, + LICENSE = license, + NAME = name, + VERSION = version, ) # verbose compile @@ -134,7 +134,7 @@ verbose = ARGUMENTS.get('verbose', False) if not bool(verbose): env['CCCOMSTR'] = "Compiling $TARGET" env['CXXCOMSTR'] = "Compiling $TARGET" - env['ARCOMSTR'] = " ar $TARGER" + env['ARCOMSTR'] = " ar $TARGET" env['LINKCOMSTR'] = "Linking $TARGET"