aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2004-12-07 15:27:11 +0000
committerMarcus Brinkmann <[email protected]>2004-12-07 15:27:11 +0000
commit0120be1520857ee63d38a5018387a6733d9bd595 (patch)
treeb6e1b38505a62a70c14464eb69d2c247ee0d2a9a /configure.ac
parentRevert change to fix up gpgme-1.0.1 release tag glitch. (diff)
downloadgpgme-0120be1520857ee63d38a5018387a6733d9bd595.tar.gz
gpgme-0120be1520857ee63d38a5018387a6733d9bd595.zip
Fix up gpgme-1.0.1 release changes. Somehow the correct change didn'tgpgme-1-0-1
make it into the repository.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f15d5b17..ea065aa8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -295,7 +295,7 @@ if test "$ok" = "maybe"; then
AC_MSG_WARN([GnuPG must be at least version $NEED_GPG_VERSION])
fi
fi
-AM_CONDITIONAL(RUN_GPG_TESTS, [test "$ok" = "yes" ])
+AM_CONDITIONAL(RUN_GPG_TESTS, test "$ok" = "yes")
AC_SUBST(GPG_PATH)
NO_OVERRIDE=no
@@ -330,7 +330,7 @@ else
AC_DEFINE_UNQUOTED(GPGSM_PATH, "$GPGSM", [Path to the GPGSM binary.])
AC_SUBST(GPGSM)
fi
-AM_CONDITIONAL(HAVE_GPGSM, ["$GPGSM" != "no"])
+AM_CONDITIONAL(HAVE_GPGSM, test "$GPGSM" != "no")
dnl Check for GPGSM version requirement.
GPGSM_VERSION=unknown
ok=maybe
@@ -386,7 +386,7 @@ if test "$ok" = "maybe"; then
AC_MSG_WARN([GPGSM must be at least version $NEED_GPGSM_VERSION])
fi
fi
-AM_CONDITIONAL(RUN_GPGSM_TESTS, [test "$ok" = "yes" ])
+AM_CONDITIONAL(RUN_GPGSM_TESTS, test "$ok" = "yes")
# FIXME: Only build if supported.
AM_CONDITIONAL(BUILD_ASSUAN, test "$GPGSM" != "no")