groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[groff] 35/39: configure.ac: Fix code style nits; tweak report.


From: G. Branden Robinson
Subject: [groff] 35/39: configure.ac: Fix code style nits; tweak report.
Date: Tue, 31 May 2022 20:32:31 -0400 (EDT)

gbranden pushed a commit to branch master
in repository groff.

commit 73d3c0c6f0b3c9845c3414741f6c707d93200321
Author: G. Branden Robinson <g.branden.robinson@gmail.com>
AuthorDate: Tue May 31 17:21:19 2022 -0500

    configure.ac: Fix code style nits; tweak report.
    
    * configure.ac: Fix code style nits and tweak report.  Stop
      superfluously using braces for shell parameter expansions that don't
      require them.  The shell is not make(1).  Say "installation
      _directory_ prefix" since another kind of prefix can be used by groff
      (the "g" in front of command and macro package names shared with AT&T
      troff).
---
 ChangeLog    | 9 +++++++++
 configure.ac | 8 ++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index d59769a7..74744978 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2022-05-31  G. Branden Robinson <g.branden.robinson@gmail.com>
+
+       * configure.ac: Fix code style nits and tweak report.  Stop
+       superfluously using braces for shell parameter expansions that
+       don't require them.  The shell is not make(1).  Say
+       "installation _directory_ prefix" since another kind of prefix
+       can be used by groff (the "g" in front of command and macro
+       package names shared with AT&T troff).
+
 2022-05-31  Dave Kemper <saint.snit@gmail.com>
 
        * doc/groff.texi: Fix content and style nits.
diff --git a/configure.ac b/configure.ac
index 62bcd40e..85dd8bc4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -208,12 +208,12 @@ AC_CONFIG_FILES([test-groff], [chmod +x test-groff])
 AC_OUTPUT
 
 echo "
-${PACKAGE_NAME} version ${PACKAGE_VERSION}
+$PACKAGE_NAME version $PACKAGE_VERSION
 ----------------------------------------------------------------------
- installation prefix              : ${prefix}
- C++ compiler and options         : ${CXX} ${CXXFLAGS} ${CPPFLAGS}
+ installation directory prefix    : $prefix
+ C++ compiler and options         : $CXX $CXXFLAGS $CPPFLAGS
  use libgroff's memory allocator  : $groff_use_own_allocator
- C compiler and options           : ${CC} ${CFLAGS} ${CPPFLAGS}
+ C compiler and options           : $CC $CFLAGS $CPPFLAGS
  Perl interpreter version         : $perl_version"
 if test "$groff_no_x" = yes
 then



reply via email to

[Prev in Thread] Current Thread [Next in Thread]