summaryrefslogtreecommitdiffstats
path: root/make/configure.py
diff options
context:
space:
mode:
authorkonablend <[email protected]>2009-04-19 01:47:13 +0000
committerkonablend <[email protected]>2009-04-19 01:47:13 +0000
commit4fffefa4da3832f6883fb21527847deaaf8455b4 (patch)
treeb6e49d32ddb7a86bca4b856c8002d0dabe3a3c17 /make/configure.py
parent05965924b744356f7eb4977303e0afcb15d6300e (diff)
BuildSystem: fix darwin/xcode to avoid double-configure/build after svn up
- build system automagically rebuilds certain files from libhb upwards after an svn up to maintain accurate repository information in binaries; if building with xcode the process was inadvertantly repeated on subsequent 'make'. - enhanced make/xcodemake to record the user's environment when shunted through xcode. this should help in diagnosing build issues from Xcode.app in the future. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2344 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make/configure.py')
-rw-r--r--make/configure.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/configure.py b/make/configure.py
index ba089411a..8c33becea 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1248,9 +1248,9 @@ try:
else:
doc.add( 'BUILD.cross.prefix', '' )
- doc.add( 'BUILD.method', 'terminal' )
- doc.add( 'BUILD.date', time.strftime('%c') )
- doc.add( 'BUILD.arch', arch.mode.mode )
+ doc.add( 'BUILD.method', 'terminal' )
+ doc.add( 'BUILD.date', time.strftime('%c') )
+ doc.add( 'BUILD.arch', arch.mode.mode )
doc.addBlank()
doc.add( 'CONF.method', options.conf_method )