diff options
author | jstebbins <[email protected]> | 2011-10-26 22:28:56 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-10-26 22:28:56 +0000 |
commit | b466204358985f2f63083e6b4f79cb40c614e1f8 (patch) | |
tree | f4cbda7f831fcfadd069c6a83941de8c26d549f7 /make | |
parent | 9ea0a3e96c19b22d53430a81e5cb8271bd5a1942 (diff) |
remove some debug messages I inadvertently left in
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4324 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/make/configure.py b/make/configure.py index 02816658d..5e61b6e5a 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1094,7 +1094,6 @@ def createCLI(): h = IfHost( 'Build and use local yasm', '*-*-*', none=optparse.SUPPRESS_HELP ).value grp.add_option( '--enable-local-yasm', default=False, action='store_true', help=h ) - print "opt yasm" cli.add_option_group( grp ) @@ -1251,7 +1250,6 @@ try: strip = ToolProbe( 'STRIP.exe', 'strip' ) tar = ToolProbe( 'TAR.exe', 'gtar', 'tar' ) wget = ToolProbe( 'WGET.exe', 'wget', abort=False ) - print "Probing yasm" yasm = ToolProbe( 'YASM.exe', 'yasm', abort=False ) xcodebuild = ToolProbe( 'XCODEBUILD.exe', 'xcodebuild', abort=False ) @@ -1518,10 +1516,8 @@ int main () doc.add( 'GCC.ldsysroot', '$(GCC.sysroot)' ) doc.add( 'GCC.ldminver', '$(GCC.minver)' ) - print "enable_asm %d %d" % (options.enable_asm, options.enable_local_yasm) if options.enable_asm and ( not Tools.yasm.fail or options.enable_local_yasm ): asm = '' - print "xxxxxxx enable_asm" if build.match( 'i?86-*' ): asm = 'x86' doc.add( 'LIBHB.GCC.D', 'HAVE_MMX', append=True ) |