diff options
author | konablend <[email protected]> | 2009-03-09 03:05:53 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-03-09 03:05:53 +0000 |
commit | afbc7342acb118971fbec64de7bd3c66f515c524 (patch) | |
tree | 8c5d4e26b955dc252b5c7ee20d934e58d62d4697 /make/configure.py | |
parent | aeac4294d9d2b5f6f445dcc9ef925fd7906d9ca7 (diff) |
BuildSystem: fixed configure --debug + Xcode
- only effects users building w/ Xcode from terminal or Xcode.app who need debug libhb.
Bug details:
- shunting through Xcode causes a re-configure to give GNUmakefile the 'Xcode' environment.
- re-configure simply clobbered CONF.args thus losing effect of initial --debug option.
- solution is to pass CONF.args to re-configure.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2244 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make/configure.py')
-rw-r--r-- | make/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index c984ccc3b..3a462a322 100644 --- a/make/configure.py +++ b/make/configure.py @@ -1091,7 +1091,7 @@ try: for arg in sys.argv[1:]: if arg == '--launch': continue - args.append( "'%s'" % (arg.replace("'", '%c%c%c%c%c' % (0x27,0x22,0x27,0x22,0x27))) ) + args.append( arg ) doc.add( 'CONF.args', ' '.join( args )) doc.addBlank() |