diff --git a/.travis.yml b/.travis.yml index 44fccc621..0434abef8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,6 @@ +# Make Travis use docker (for faster builds, in theory) +sudo: false + language: cpp compiler: - clang diff --git a/xenia-build.py b/xenia-build.py index 238118192..a9393c990 100755 --- a/xenia-build.py +++ b/xenia-build.py @@ -278,7 +278,7 @@ class SetupCommand(Command): if (not os.path.exists('third_party/ninja/ninja') and not os.path.exists('third_party/ninja/ninja.exe')): print('- preparing ninja...') - os.chdir('third_party/wxWidgets') + os.chdir('third_party/ninja') # Windows needs --x64 to force building the 64-bit ninja. extra_args = '' #if sys.platform == 'win32':