summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Tsoy <alexander@tsoy.me>2014-12-02 20:10:37 +0300
committerRyan Lortie <desrt@desrt.ca>2015-02-22 18:18:28 -0500
commit782eadfba090f8813846eae0194daddf316d06cc (patch)
tree95828c56db0355ca8052f367bca48db05b4b7d05
parent2997ce0df6fe8c5a5b068a20252c06a1079329dd (diff)
downloaddconf-782eadfba090f8813846eae0194daddf316d06cc.tar.gz
build: use portable shell in configure.ac
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6a974ad..980a04b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,7 +66,7 @@ AC_ARG_ENABLE(gcov,
AC_HELP_STRING([--enable-gcov],
[enable generation of code coverage information]))
-if test "x$enable_gcov" == "xyes"; then
+if test "x$enable_gcov" = "xyes"; then
CFLAGS="$CFLAGS -O0 -fprofile-arcs -ftest-coverage"
LDFLAGS="$LDFLAGS -lgcov"
fi