diff options
author | Thierry Crozat | 2015-12-23 22:13:53 +0000 |
---|---|---|
committer | Thierry Crozat | 2015-12-23 22:15:11 +0000 |
commit | a5695f6bfda17df214d4a91bfd9eada75d51ddf8 (patch) | |
tree | 39641095575c1034bec899f8da666651fab71678 | |
parent | 1d2f90f040a6d98b903bda402b9694f292ab7645 (diff) | |
download | scummvm-rg350-a5695f6bfda17df214d4a91bfd9eada75d51ddf8.tar.gz scummvm-rg350-a5695f6bfda17df214d4a91bfd9eada75d51ddf8.tar.bz2 scummvm-rg350-a5695f6bfda17df214d4a91bfd9eada75d51ddf8.zip |
OSX: Fix make bundle target when using SDL2
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | ports.mk | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4612,6 +4612,7 @@ STAGINGPATH=$_stagingpath WIN32PATH=$_win32path AMIGAOSPATH=$_amigaospath STATICLIBPATH=$_staticlibpath +SDLCONFIG=$_sdlconfig ABI := $ABI @@ -95,7 +95,7 @@ endif # Location of static libs for the iPhone ifneq ($(BACKEND), iphone) # Static libaries, used for the scummvm-static and iphone targets -OSX_STATIC_LIBS := `$(STATICLIBPATH)/bin/sdl-config --static-libs` +OSX_STATIC_LIBS := `$(SDLCONFIG) --static-libs` endif ifdef USE_FREETYPE2 |