diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2012-07-12 11:02:29 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-07-12 11:05:09 +1000 |
commit | 5e00804d3c3ac21c75cd1b3d9b9da85b8b79cdf9 (patch) | |
tree | 64743a169191de53ca596cf3f610bd96fa87c368 /aclocal | |
parent | a81c4bbd964e13c597282f9e00da8106a5d62ba9 (diff) |
aclocal: fix misnamed variable in xorg-gtest.m4
we set have_gtest, not have_gtest_sources
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
Diffstat (limited to 'aclocal')
-rw-r--r-- | aclocal/xorg-gtest.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal/xorg-gtest.m4 b/aclocal/xorg-gtest.m4 index c45a905..6efff08 100644 --- a/aclocal/xorg-gtest.m4 +++ b/aclocal/xorg-gtest.m4 @@ -1,4 +1,4 @@ -# serial 3 +# serial 4 # Copyright (C) 2012 Canonical, Ltd. # @@ -45,7 +45,7 @@ AC_DEFUN([_CHECK_GTEST], [have_gtest=yes], [have_gtest=no]) - AS_IF([test "x$have_gtest_source" = xyes], + AS_IF([test "x$have_gtest" = xyes], [AC_SUBST(GTEST_CPPFLAGS)] [AC_SUBST(GTEST_SOURCE)]) ]) # _CHECK_GTEST |