From dfe53c8de9761272549d389f1abdd1416b16d59d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Tue, 6 Aug 1996 00:17:37 +0200 Subject: [PATCH] minor bugfix Rev: src/modules/gmpmod/configure.in:1.3 --- src/modules/gmpmod/configure.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/modules/gmpmod/configure.in b/src/modules/gmpmod/configure.in index 115872c0e9..9cecf8fc30 100644 --- a/src/modules/gmpmod/configure.in +++ b/src/modules/gmpmod/configure.in @@ -17,9 +17,11 @@ return 0; ],lpc_cv_lib_gmp_is_new_enough=yes,lpc_cv_lib_gmp_is_new_enough=no) ]) -AC_MSG_RESULT($lpc_cv_lib_gmp_is_new_enough) -if $lpc_cv_lib_gmp_is_new_enough = yes; then +if test "$lpc_cv_lib_gmp_is_new_enough" = yes; then + AC_MSG_RESULT(yes) AC_DEFINE(HAVE_NEW_GMP) +else + AC_MSG_RESULT(no) fi AC_OUTPUT(Makefile,echo FOO >stamp-h ) -- GitLab