diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-09-09 10:05:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-09 10:05:56 -0700 |
commit | 7ee8f9ba0925cf427b6e2870d3d365abab4b2414 (patch) | |
tree | 383beeda11244e7311297d4b357e1994b8de6ec2 /system | |
parent | 70fbf7d8d5879c2349cb5c5d6ae2278dcf3d5a51 (diff) |
remove unnecessary -lSDL in sdl-config
Diffstat (limited to 'system')
-rwxr-xr-x | system/bin/sdl-config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/bin/sdl-config b/system/bin/sdl-config index 8c69a95c..51dff31d 100755 --- a/system/bin/sdl-config +++ b/system/bin/sdl-config @@ -7,7 +7,7 @@ print >> sys.stderr, 'emscripten sdl-config called with', sys.argv args = sys.argv[1:] if args[0] == '--cflags': - print '-lSDL' + print '' elif '--version' in args: print '1.3.0' |