summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2015-12-18 11:50:44 +0100
committerNiels Möller <nisse@lysator.liu.se>2015-12-18 11:50:44 +0100
commite1f2fa297336b2eafe2f37cfd7e33cd6a00ff130 (patch)
tree796c8e3d259a89eb41d7104e9d61ad780cabc0cc
parent230e83121f9ec6dd04efb5c9ed4cb9971e9da966 (diff)
downloadnettle-e1f2fa297336b2eafe2f37cfd7e33cd6a00ff130.tar.gz
Fixed shell conditional in setup of IF_DLOPEN_TEST.
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b7a7b39..942f6cb1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2015-12-18 Niels Möller <nisse@lysator.liu.se>
+ * configure.ac (IF_DLOPEN_TEST): Fixed shell conditional.
+
* testsuite/ecc-mod-test.c (test_main): Handle random seeding if
NETTLE_TEST_SEED is set in the environment.
diff --git a/configure.ac b/configure.ac
index a2251f8e..b1ec806a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -827,7 +827,7 @@ IF_DLOPEN_TEST='#'
if test "x$enable_shared" = xyes ; then
IF_SHARED=''
IF_NOT_SHARED='#'
- if "x$ac_cv_lib_dl_dlopen" = yes ; then
+ if test "x$ac_cv_lib_dl_dlopen" = xyes ; then
IF_DLOPEN_TEST=''
fi
else