diff options
author | Joost Peters | 2009-10-15 08:38:42 +0000 |
---|---|---|
committer | Joost Peters | 2009-10-15 08:38:42 +0000 |
commit | 03d2c959319bb2a17b8526a690d59dda8a39a856 (patch) | |
tree | ed28134cccb15a66f9ebfd943616d25b77672f05 | |
parent | 483bed9540733b546c58482f7a101adcc45dcec7 (diff) | |
download | scummvm-rg350-03d2c959319bb2a17b8526a690d59dda8a39a856.tar.gz scummvm-rg350-03d2c959319bb2a17b8526a690d59dda8a39a856.tar.bz2 scummvm-rg350-03d2c959319bb2a17b8526a690d59dda8a39a856.zip |
Fix Makefile again; use PSP targeted sdl-config, not the system-wide one.
If you need to adjust this to build then your toolchain setup is broken!
svn-id: r45108
-rw-r--r-- | backends/platform/psp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/psp/Makefile b/backends/platform/psp/Makefile index 2f43eba7aa..22086c26d0 100644 --- a/backends/platform/psp/Makefile +++ b/backends/platform/psp/Makefile @@ -126,8 +126,8 @@ ENABLED = STATIC_PLUGIN endif # SDL Libs and Flags -SDLFLAGS := $(shell sdl-config --cflags) -SDLLIBS := $(shell sdl-config --libs) +SDLFLAGS := $(shell $(PSPBIN)/sdl-config --cflags) +SDLLIBS := $(shell $(PSPBIN)/sdl-config --libs) # PSP LIBS PSPLIBS = -lpspdisplay -lpspgu -lpspctrl -lpspsdk -lpspnet \ -lpspnet_inet -lpsputility -lpspuser -lpsppower |