diff options
author | Petteri Räty <petsku@petteriraty.eu> | 2011-03-06 14:38:06 +0200 |
---|---|---|
committer | Petteri Räty <petsku@petteriraty.eu> | 2011-03-06 14:38:06 +0200 |
commit | 7cdfc3f09d207bed097ec1580200ca530b96e692 (patch) | |
tree | 8acd54ae6cad6ecfd5decf3090ee676cc1acc2d1 /m4 | |
parent | Merge branch 'buildsystem' (diff) | |
download | libbash-7cdfc3f09d207bed097ec1580200ca530b96e692.tar.gz libbash-7cdfc3f09d207bed097ec1580200ca530b96e692.tar.bz2 libbash-7cdfc3f09d207bed097ec1580200ca530b96e692.zip |
Fix running ./configure without arguments
Fixed googletest autoconf support so that giving --enable-gtest is not
required to run the tests successfully.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gtest.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/gtest.m4 b/m4/gtest.m4 index 6598ba7..e96650b 100644 --- a/m4/gtest.m4 +++ b/m4/gtest.m4 @@ -15,7 +15,7 @@ AC_ARG_ENABLE([gtest], [Enable tests using the Google C++ Testing Framework. (Default is enabled.)])], [], - [enable_gtest=]) + [enable_gtest=yes]) AC_ARG_VAR([GTEST_CONFIG], [The exact path of Google Test's 'gtest-config' script.]) AC_ARG_VAR([GTEST_CPPFLAGS], |