Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
droark committed Feb 14, 2018
1 parent c3e00e1 commit 58e84f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ AC_ARG_ENABLE([tests],
[want_tests="$enableval"], [want_tests=no])

#build benchmarks
AC_ARG_ENABLE([benchmarks],
AS_HELP_STRING([--enable-benchmarks],
AC_ARG_ENABLE([benchmark],
AS_HELP_STRING([--enable-benchmark],
[build with benchmark suites @<:@default=no@:>@]),
[want_benchmarks=$enableval], [want_benchmarks=no])
[want_benchmark=$enableval], [want_benchmark=no])

#build debug arg
AC_ARG_ENABLE([debug],
Expand Down Expand Up @@ -173,7 +173,7 @@ AC_CONFIG_FILES(Makefile
cppForSwig/Makefile
cppForSwig/lmdb/Makefile)

AM_CONDITIONAL([BUILD_BENCH], [test x$want_benchmarks = xyes])
AM_CONDITIONAL([BUILD_BENCH], [test x$want_benchmark = xyes])
AM_CONDITIONAL([BUILD_TESTS], [test "x$want_tests" = "xyes"])
if test "x$want_tests" = "xyes"; then
AC_CONFIG_FILES(cppForSwig/gtest/Makefile)
Expand All @@ -192,6 +192,6 @@ echo " CXXFLAGS = $CXXFLAGS"
echo " LDFLAGS = $LDFLAGS"
echo " LD = $LD"
echo " with tests = $want_tests"
echo " with benchmarks = $want_benchmarks"
echo " with benchmarks = $want_benchmark"
echo " debug symbols = $want_debug"
echo " with GUI = $with_gui"

0 comments on commit 58e84f2

Please sign in to comment.