From 98277aeda0b8d89054033ae5e814d59370cfad42 Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Sat, 25 Oct 2008 11:11:20 +0000 Subject: [PATCH] Fixed build ("file" -> "files"). Made indenting consistent again (tabs or spaces does not matter, but mixing them is evil). git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@953 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_PadSimple/Src/SConscript | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Plugins/Plugin_PadSimple/Src/SConscript b/Source/Plugins/Plugin_PadSimple/Src/SConscript index ecff811a4b..9aaa549f2c 100644 --- a/Source/Plugins/Plugin_PadSimple/Src/SConscript +++ b/Source/Plugins/Plugin_PadSimple/Src/SConscript @@ -14,17 +14,17 @@ files = [ padenv = env.Clone() if not padenv['osx64']: - file += [ - "GUI/ConfigDlg.cpp", - "XInputBase.cpp", - ] + files += [ + "GUI/ConfigDlg.cpp", + "XInputBase.cpp", + ] padenv.Append(LIBS = [ 'common' ]) if padenv['osx64']: - padenv.Append( - CXXFLAGS = [ '-arch', 'x86_64' ], - LINKFLAGS = [ '-arch', 'x86_64' ], - ) + padenv.Append( + CXXFLAGS = [ '-arch', 'x86_64' ], + LINKFLAGS = [ '-arch', 'x86_64' ], + ) padenv.SharedLibrary(output, files)