reflect in build strings that -gmp is now the default and -cln is an option
authorMorgan Deters <mdeters@gmail.com>
Wed, 1 Sep 2010 22:20:43 +0000 (22:20 +0000)
committerMorgan Deters <mdeters@gmail.com>
Wed, 1 Sep 2010 22:20:43 +0000 (22:20 +0000)
config/build-type

index 0449f33755967424eb883483314663f2d91e3c51..266ba2ca57a45c8fdd57064827f4029928ef811c 100755 (executable)
@@ -29,8 +29,8 @@
 #   coverage
 #   profiling
 #
-# Also you can specify "cln" or "gmp".  If "gmp", the build dir
-# contains the string "gmp".  (cln is considered the default.)
+# Also you can specify "cln" or "gmp".  If "cln", the build dir
+# contains the string "cln".  (gmp is considered the default.)
 #
 
 if [ $# -eq 0 ]; then
@@ -43,8 +43,8 @@ shift
 
 while [ $# -gt 0 ]; do
   case "$1" in
-    cln) ;;
-    gmp) gmp=1 ;;
+    cln) cln=1 ;;
+    gmp) ;;
     no*) eval `expr "$1" : 'no\(.*\)'`=0 ;;
     *)   eval $1=1 ;;
   esac
@@ -52,7 +52,7 @@ while [ $# -gt 0 ]; do
 done
 
 build_type_suffix=
-for arg in gmp staticbinary optimized debugsymbols statistics assertions tracing muzzle coverage profiling; do
+for arg in cln staticbinary optimized debugsymbols statistics assertions tracing muzzle coverage profiling; do
   if eval [ -n '"${'$arg'+set}"' ]; then
     if eval [ '"${'$arg'}"' -eq 0 ]; then
       build_type_suffix=$build_type_suffix-no$arg