Merge pull request #394 from notroj/silently

Use AC_MSG_NOTICE so e.g. "configure --silent" is still silent.
This commit is contained in:
Sebastian Pipping 2020-03-18 19:12:38 +01:00 committed by GitHub
commit a414308030
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -330,7 +330,7 @@ AC_CONFIG_FILES([run.sh], [chmod +x run.sh])
AC_OUTPUT
cat <<EOF
AC_MSG_NOTICE([
Automake flags (can be overridden by user flags):
[AM_CPPFLAGS]: ${AM_CPPFLAGS}
@ -343,4 +343,4 @@ User flags (override Automake flags on conflict):
CFLAGS: ${CFLAGS}
CXXFLAGS: ${CXXFLAGS}
LDFLAGS: ${LDFLAGS}
EOF
])