Skip to content

Commit

Permalink
fixup! Travis hack: Don't require vorbis on OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
CelticMinstrel committed Nov 12, 2016
1 parent 8e935df commit cdb1640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Expand Up @@ -396,7 +396,7 @@ if env["prereqs"]:
client_env = env.Clone()
conf = client_env.Configure(**configure_args)
have_client_prereqs = have_server_prereqs & have_sdl_other() & \
('TRAVIS' in os.environ or (conf.CheckLib("vorbisfile") & \
(('TRAVIS' in os.environ and os.environ["TRAVIS_OS_NAME"] == "osx") or (conf.CheckLib("vorbisfile") & \
conf.CheckOgg())) & \
conf.CheckPNG() & \
conf.CheckJPG() & \
Expand Down

0 comments on commit cdb1640

Please sign in to comment.