summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DebuggerWX/src/SConscript')
-rw-r--r--Source/Core/DebuggerWX/src/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DebuggerWX/src/SConscript b/Source/Core/DebuggerWX/src/SConscript
index 5532bf23b7..522e36bbf4 100644
--- a/Source/Core/DebuggerWX/src/SConscript
+++ b/Source/Core/DebuggerWX/src/SConscript
@@ -18,14 +18,14 @@ files = ["LogWindow.cpp",
wxenv = env.Clone()
wxenv.Append(
CXXFLAGS = ' ' + ' '.join([
- '`wx-config --cppflags`',
+ env['WXCPPFLAGS'],
'-DUSE_XPM_BITMAPS',
'-DwxNEEDS_CHARPP'
]),
LINKFLAGS = ' ' + ' '.join([
'-L/usr/local/lib',
'-pthread',
- '`wx-config --libs --debug`'
+ env['WXLIBFLAGS'],
])
)
wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ])