groff-commit
[Top][All Lists]
Advanced

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

[groff] 03/49: [gxditview]: Fix noise from build.


From: G. Branden Robinson
Subject: [groff] 03/49: [gxditview]: Fix noise from build.
Date: Sun, 6 Nov 2022 00:37:17 -0400 (EDT)

gbranden pushed a commit to branch master
in repository groff.

commit 4b51278b8a59c40506512e495bbf154966e329d0
Author: G. Branden Robinson <g.branden.robinson@gmail.com>
AuthorDate: Tue Nov 1 17:05:20 2022 -0500

    [gxditview]: Fix noise from build.
    
    * src/devices/xditview/xditview.am ($(GXDITVIEW_GROFF_VERSION_H)): Run
      `$(MKDIR_P)` and `printf` as separate rule commands in order to use
      them with `$(AM_V_at)` and `$(AM_V_GEN)`, respectively.  Prevents
      noise from build.
    
    Fixes <https://savannah.gnu.org/bugs/?63302>.  Thanks to Bjarni Ingi
    Gislason for the report.
---
 ChangeLog                        | 10 ++++++++++
 src/devices/xditview/xditview.am |  6 +++---
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index b96083812..9f200652c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2022-11-01  G. Branden Robinson <g.branden.robinson@gmail.com>
+
+       * src/devices/xditview/xditview.am
+       ($(GXDITVIEW_GROFF_VERSION_H)): Run `$(MKDIR_P)` and `printf` as
+       separate rule commands in order to use them with `$(AM_V_at)`
+       and `$(AM_V_GEN)`, respectively.  Prevents noise from build.
+
+       Fixes <https://savannah.gnu.org/bugs/?63302>.  Thanks to Bjarni
+       Ingi Gislason for the report.
+
 2022-10-31  G. Branden Robinson <g.branden.robinson@gmail.com>
 
        [eqn]: Fix Savannah #63299.
diff --git a/src/devices/xditview/xditview.am b/src/devices/xditview/xditview.am
index 084c26a3c..7bb32ba0a 100644
--- a/src/devices/xditview/xditview.am
+++ b/src/devices/xditview/xditview.am
@@ -37,9 +37,9 @@ GXDITVIEWSOURCES = \
 GXDITVIEW_GROFF_VERSION_H=src/devices/xditview/groff_version.h
 
 $(GXDITVIEW_GROFF_VERSION_H): $(top_srcdir)/.version
-       $(AM_V_at)$(MKDIR_P) `dirname $@` \
-       && $(AM_V_GEN)printf \
-           'const char *Version_string = "%s";\n' '@VERSION@' > $@
+       $(AM_V_at)$(MKDIR_P) `dirname $@`
+       $(AM_V_GEN)printf \
+         'const char *Version_string = "%s";\n' '@VERSION@' > $@
 
 if WITHOUT_X11
 GXDITVIEW_MAN1 =



reply via email to

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