diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2021-11-30 00:33:12 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-12-01 03:12:21 -0500 |
commit | defd8d548572f04765a3f056e5d6181101528342 (patch) | |
tree | fbcd3a1840500c338c47ac612f449b5702f3dd3f /m4 | |
parent | 86c14db5fdd07fe94a7c9016368f0d7cc6a02be8 (diff) | |
download | haskell-defd8d548572f04765a3f056e5d6181101528342.tar.gz |
Avoid raw `echo` in `FPTOOLS_SET_PLATFORM_VARS`
This ensures quiet configuring works.
Diffstat (limited to 'm4')
-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) |