[haiku-commits] r34867 - haiku/trunk

  • From: revol@xxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 3 Jan 2010 04:05:12 +0100 (CET)

Author: mmu_man
Date: 2010-01-03 04:05:12 +0100 (Sun, 03 Jan 2010)
New Revision: 34867
Changeset: http://dev.haiku-os.org/changeset/34867/haiku

Modified:
   haiku/trunk/configure
Log:
Make configure dump its invocation arguments to the BuildConfig file to allow 
for easier rerun later, as I'm getting tired to figure each of them each time 
someone adds some config variable...


Modified: haiku/trunk/configure
===================================================================
--- haiku/trunk/configure       2010-01-03 02:43:32 UTC (rev 34866)
+++ haiku/trunk/configure       2010-01-03 03:05:12 UTC (rev 34867)
@@ -252,6 +252,9 @@
 sourceDir=`pwd`
 cd "$currentDir"
 
+# backup the passed arguments
+configureArgs="$@"
+
 # default parameter values
 #
 platform=`uname`
@@ -465,7 +468,8 @@
 # Generate BuildConfig
 cat << EOF > "$buildOutputDir/BuildConfig"
 # BuildConfig
-# Note: This file has been automatically generated by configure.
+# Note: This file has been automatically generated by configure with the 
following arguments:
+# ${configureArgs}
 
 TARGET_PLATFORM                        ?= "${target}" ;
 HOST_PLATFORM                          ?= "${buildPlatform}" ;


Other related posts:

  • » [haiku-commits] r34867 - haiku/trunk - revol