blob: 9aff6d9ebf195393c8d280c473ca7a6a30c9e3e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- configure.orig 2009-02-24 21:18:47.000000000 +0100
+++ configure 2009-02-24 21:19:24.000000000 +0100
@@ -18069,7 +18069,7 @@
{ echo "$as_me:$LINENO: checking build test tools, unit tests, and -Werror" >&5
echo $ECHO_N "checking build test tools, unit tests, and -Werror... $ECHO_C" >&6; }
-if test "$enable_tests" == "yes"; then
+if test "$enable_tests" = "yes"; then
cat >>confdefs.h <<_ACEOF
#define WITH_TESTS 1
@@ -18085,7 +18085,7 @@
tests_status="no"
fi
- if test "$enable_tests" == "yes"; then
+ if test "$enable_tests" = "yes"; then
WITH_TESTS_TRUE=
WITH_TESTS_FALSE='#'
else
@@ -18100,7 +18100,7 @@
fi
-if test "$enable_coverage" == "yes"; then
+if test "$enable_coverage" = "yes"; then
CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage"
fi
|