From b7e78eeb186b66616fe7d9f16cf7edb19bb4e542 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Thu, 7 May 2020 13:25:10 -0700 Subject: [PATCH] configure: Fix defaulting $withval for --with-included-rocksdb 6c2e78128fb. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b66de4571..6110c26c7 100644 --- a/configure.ac +++ b/configure.ac @@ -1832,7 +1832,7 @@ AC_HELP_STRING([--with-included-rocksdb[[[=version]]]], [Use the RocksDB sources rocksdb_linkage="shared_lib" rocksdb_version="$withval" - if test -z $rocksdb_version; then + if test x"$rocksdb_version" == x"yes"; then rocksdb_version="$ROCKSDB_VERSION_DEFAULT" fi