configure.sh: Fix option parsing to match --help (#2611)
authorAndres Noetzli <andres.noetzli@gmail.com>
Mon, 5 Nov 2018 16:42:21 +0000 (08:42 -0800)
committerAina Niemetz <aina.niemetz@gmail.com>
Mon, 5 Nov 2018 16:42:21 +0000 (08:42 -0800)
configure.sh

index 1cc104c940f4a60a2e20a3b7c052e223839c7f4c..d5f466ec6595ca9fddf899c71da350bcbef78d91 100755 (executable)
@@ -53,7 +53,7 @@ The following flags enable optional packages (disable with --no-<option name>).
   --glpk                   use GLPK simplex solver
   --abc                    use the ABC AIG library
   --cadical                use the CaDiCaL SAT solver
-  --cryptominisat          use the CryptoMiniSat sat solver
+  --cryptominisat          use the CryptoMiniSat SAT solver
   --lfsc                   use the LFSC proof checker
   --symfpu                 use SymFPU for floating point solver
   --portfolio              build the multithreaded portfolio version of CVC4
@@ -197,8 +197,8 @@ do
     --debug-symbols) debug_symbols=ON;;
     --no-debug-symbols) debug_symbols=OFF;;
 
-    --debug-context-memory-manager) debug_context_mm=ON;;
-    --no-debug-context-memory-manager) debug_context_mm=OFF;;
+    --debug-context-mm) debug_context_mm=ON;;
+    --no-debug-context-mm) debug_context_mm=OFF;;
 
     --dumping) dumping=ON;;
     --no-dumping) dumping=OFF;;