remove about quiet
This commit is contained in:
parent
5686d556a5
commit
a732b7526a
1 changed files with 1 additions and 3 deletions
|
@ -20,7 +20,6 @@ class LibSDL2Recipe(Recipe):
|
||||||
|
|
||||||
def build_arch(self, arch):
|
def build_arch(self, arch):
|
||||||
env = arch.get_env()
|
env = arch.get_env()
|
||||||
quiet = ["-quiet"] if self.ctx.quiet else []
|
|
||||||
shprint(sh.xcodebuild, self.ctx.concurrent_xcodebuild,
|
shprint(sh.xcodebuild, self.ctx.concurrent_xcodebuild,
|
||||||
"ONLY_ACTIVE_ARCH=NO",
|
"ONLY_ACTIVE_ARCH=NO",
|
||||||
"ARCHS={}".format(arch.arch),
|
"ARCHS={}".format(arch.arch),
|
||||||
|
@ -28,8 +27,7 @@ class LibSDL2Recipe(Recipe):
|
||||||
"-sdk", arch.sdk,
|
"-sdk", arch.sdk,
|
||||||
"-project", "Xcode-iOS/SDL/SDL.xcodeproj",
|
"-project", "Xcode-iOS/SDL/SDL.xcodeproj",
|
||||||
"-target", "libSDL-iOS",
|
"-target", "libSDL-iOS",
|
||||||
"-configuration", "Release",
|
"-configuration", "Release")
|
||||||
*quiet)
|
|
||||||
|
|
||||||
|
|
||||||
recipe = LibSDL2Recipe()
|
recipe = LibSDL2Recipe()
|
||||||
|
|
Loading…
Reference in a new issue