From 36e60903069f0faf3d3d4caf4f2ca6ff384896c9 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Mon, 23 Dec 2013 13:45:33 -0500 Subject: [PATCH] cln now default w.r.t. build ID string --- config/build-type | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/build-type b/config/build-type index f982b0020..f5ea50bde 100755 --- a/config/build-type +++ b/config/build-type @@ -30,8 +30,8 @@ # coverage # profiling # -# Also you can specify "cln" or "gmp". If "cln", the build dir -# contains the string "cln". (gmp is considered the default.) +# Also you can specify "cln" or "gmp". If "gmp", the build dir +# contains the string "gmp". (cln is considered the default.) # # Also for glpk. # @@ -46,8 +46,8 @@ shift while [ $# -gt 0 ]; do case "$1" in - cln) cln=1 ;; - gmp) ;; + cln) ;; + gmp) gmp=1 ;; no*) eval `expr "$1" : 'no\(.*\)'`=0 ;; *) eval $1=1 ;; esac @@ -55,7 +55,7 @@ while [ $# -gt 0 ]; do done build_type_suffix= -for arg in cln glpk staticbinary optimized proof debugsymbols statistics replay assertions tracing muzzle coverage profiling; do +for arg in gmp glpk staticbinary optimized proof debugsymbols statistics replay 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 -- 2.30.2