diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-02-09 15:55:17 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-02-09 15:55:17 +0100 |
commit | 4446565d36ac4482282146a9ab35068f18dff4fd (patch) | |
tree | c4bc5a10c0a1d9faa7daa7378b8883261b346817 /config | |
parent | 356687bd825e5ca7230d43c1bffe7a59ad2e77bd (diff) | |
download | postgresql-4446565d36ac4482282146a9ab35068f18dff4fd.tar.gz |
Use better comment marker in Autoconf input
The comment marker "#" is copied to the output, so it's only
appropriate for comments that make sense in the shell output. For
comments about the Autoconf language, "dnl" should be used.
Diffstat (limited to 'config')
-rw-r--r-- | config/llvm.m4 | 2 | ||||
-rw-r--r-- | config/programs.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/llvm.m4 b/config/llvm.m4 index c1e4bb1375..a5f4a9af44 100644 --- a/config/llvm.m4 +++ b/config/llvm.m4 @@ -91,7 +91,7 @@ AC_DEFUN([PGAC_LLVM_SUPPORT], LLVM_BINPATH=`$LLVM_CONFIG --bindir` - # LLVM_CONFIG, CLANG are already output via AC_ARG_VAR +dnl LLVM_CONFIG, CLANG are already output via AC_ARG_VAR AC_SUBST(LLVM_LIBS) AC_SUBST(LLVM_CPPFLAGS) AC_SUBST(LLVM_CFLAGS) diff --git a/config/programs.m4 b/config/programs.m4 index 21888cb68f..5a1859fd13 100644 --- a/config/programs.m4 +++ b/config/programs.m4 @@ -56,7 +56,7 @@ if test -z "$BISON"; then *** PostgreSQL then you do not need to worry about this, because the Bison *** output is pre-generated.)]) fi -# We don't need AC_SUBST(BISON) because PGAC_PATH_PROGS did it +dnl We don't need AC_SUBST(BISON) because PGAC_PATH_PROGS did it AC_SUBST(BISONFLAGS) ])# PGAC_PATH_BISON |