mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Fix OS X Lion build:
Lion no longer includes wxWidgets 2.8, so be prepared to fall back to Externals/wxWidgets3 even when no wx-config command is found at all. There are a few new and deprecated symbols in the 10.7 SDK that conflict with wxWidgets/Dolphin, so just use the 10.6 SDK for now. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7325 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -126,6 +126,8 @@ elif sys.platform == 'darwin':
|
||||
CFBundleTypeRole = 'Viewer')]
|
||||
)))
|
||||
|
||||
env.Command('dummy', '#' + env['prefix'],
|
||||
"find $SOURCES -name .svn -exec rm -rf {} +")
|
||||
else:
|
||||
files += ['Src/X11Utils.cpp']
|
||||
exe = env['binary_dir'] + '/dolphin-emu'
|
||||
@ -134,7 +136,4 @@ else:
|
||||
env.InstallAs(env['data_dir'] + '/sys', '#Data/Sys')
|
||||
env.InstallAs(env['data_dir'] + '/user', '#Data/User')
|
||||
|
||||
env.Command('dummy', '#' + env['prefix'],
|
||||
"find $SOURCES -name .svn -exec rm -rf {} +")
|
||||
|
||||
env.Program(exe, files)
|
||||
|
Reference in New Issue
Block a user