diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2021-11-30 00:33:12 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2021-11-30 00:33:52 +0000 |
commit | 030721f83d9bc1ba18064002504fa5159c68d4e5 (patch) | |
tree | bf822ee83df50b87464ab3fd1c39c2d75fdf2e8d | |
parent | 9e456e962b88b547d49da85bb6d20e236fadb0d9 (diff) | |
download | haskell-030721f83d9bc1ba18064002504fa5159c68d4e5.tar.gz |
Avoid raw `echo` in `FPTOOLS_SET_PLATFORM_VARS`
This ensures quiet configuring works.
-rw-r--r-- | m4/fptools_set_platform_vars.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/fptools_set_platform_vars.m4 b/m4/fptools_set_platform_vars.m4 index e091f1198c..4c022da52b 100644 --- a/m4/fptools_set_platform_vars.m4 +++ b/m4/fptools_set_platform_vars.m4 @@ -105,7 +105,7 @@ AC_DEFUN([FPTOOLS_SET_PLATFORM_VARS], $2Vendor_CPP=` echo "[$]$2Vendor" | sed -e 's/\./_/g' -e 's/-/_/g'` $2OS_CPP=` echo "[$]$2OS" | sed -e 's/\./_/g' -e 's/-/_/g'` - echo "GHC $1 : [$]$2Platform" + AC_MSG_NOTICE([GHC ]$1[ : $]$2[Platform]) AC_SUBST($2Platform) AC_SUBST($2Platform_CPP) |