Skip to content

Commit

Permalink
use m4_normalize to unsplit lines
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpase authored and james-d-mitchell committed Sep 16, 2023
1 parent dde6341 commit 5473b4c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions m4/ax_check_libsemigroup.m4
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ AC_DEFUN([AX_CHECK_LIBSEMIGROUPS], [
[libsemigroups >= $REQUI_LIBSEMIGROUPS_VERSION],
[need_included_libsemigroups=no],
[need_included_libsemigroups=yes])],
[AC_MSG_NOTICE([ignoring flag --with-external-libsemigroups, the Semigroups configure file
was created on a system without m4 macros for pkg-config available...])])
[AC_MSG_NOTICE(m4_normalize([
ignoring flag --with-external-libsemigroups, the Semigroups configure file
was created on a system without m4 macros for pkg-config available...]))])
fi
if test "$need_included_libsemigroups" = yes; then
AC_MSG_NOTICE([using included libsemigroups...])
Expand All @@ -28,8 +29,9 @@ AC_DEFUN([AX_CHECK_LIBSEMIGROUPS], [
[AS_IF(
[test -f libsemigroups/include/libsemigroups.hpp],
[],
[AC_MSG_ERROR([libsemigroups is required, clone or download the repo from
https://github.com/libsemigroups/libsemigroups into this directory])])])
[AC_MSG_ERROR(m4_normalize([
libsemigroups is required, clone or download the repo from
https://github.com/libsemigroups/libsemigroups into this directory]))])])
dnl Temporary workaround for compatibility with dev version of
dnl libsemigroups which doesn't contain .VERSION file by default
Expand Down

0 comments on commit 5473b4c

Please sign in to comment.