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 /macosx | |
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 'macosx')
-rw-r--r-- | macosx/module.defs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/module.defs b/macosx/module.defs index 75b9655ae..61a287366 100644 --- a/macosx/module.defs +++ b/macosx/module.defs @@ -39,6 +39,7 @@ MACOSX.XCODE = $(strip \ EXTERNAL_PREFIX='$(XCODE.external.prefix)' \ EXTERNAL_JOBS='$(BUILD.jobs)' \ EXTERNAL_METHOD='$(CONF.method)' \ + EXTERNAL_CONFARGS='$(CONF.args)' \ EXTERNAL_GOALS='$(3)' \ EXTERNAL_VARS='$(-*-command-variables-*-)' \ $(2) ) |