remove about quiet

This commit is contained in:
Mathieu Virbel 2018-10-30 17:05:59 +01:00
parent 5686d556a5
commit a732b7526a

View file

@ -20,7 +20,6 @@ class LibSDL2Recipe(Recipe):
def build_arch(self, arch):
env = arch.get_env()
quiet = ["-quiet"] if self.ctx.quiet else []
shprint(sh.xcodebuild, self.ctx.concurrent_xcodebuild,
"ONLY_ACTIVE_ARCH=NO",
"ARCHS={}".format(arch.arch),
@ -28,8 +27,7 @@ class LibSDL2Recipe(Recipe):
"-sdk", arch.sdk,
"-project", "Xcode-iOS/SDL/SDL.xcodeproj",
"-target", "libSDL-iOS",
"-configuration", "Release",
*quiet)
"-configuration", "Release")
recipe = LibSDL2Recipe()