From d80df09f3b1fae2d2cae264b7943038c5ebd6ecc Mon Sep 17 00:00:00 2001 From: Alessandro Lupo Date: Fri, 16 Jun 2023 19:16:46 +0100 Subject: [PATCH] consistent enable sp config flag --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 032a4729..5fadc6cf 100644 --- a/configure.ac +++ b/configure.ac @@ -202,9 +202,9 @@ case ${ac_Nc} in esac ############### Symplectic group -AC_ARG_ENABLE([symplectic], - [AC_HELP_STRING([--enable-symplectic=yes|no], [enable gauge group Sp2n])], - [ac_ENABLE_SP=${enable_symplectic}], [ac_ENABLE_SP=no]) +AC_ARG_ENABLE([Sp], + [AC_HELP_STRING([--enable-Sp=yes|no], [enable gauge group Sp2n])], + [ac_ENABLE_SP=${enable_Sp}], [ac_ENABLE_SP=no]) AM_CONDITIONAL(BUILD_SP, [ test "${ac_ENABLE_SP}X" == "yesX" ]) @@ -214,7 +214,7 @@ case ${ac_ENABLE_SP} in no) AC_DEFINE([Sp2n_config],[0],[gauge group SUn], [have_sp2n=false]);; *) - AC_MSG_ERROR(["--enable-symplectic is either yes or no"]);; + AC_MSG_ERROR(["--enable-Sp is either yes or no"]);; esac ############### FP16 conversions