[Gpg4win-commits] [git] Gpg4win - branch, website, updated. gpg4win-2.1.0-352-gf57154d

by Bernhard Reiter cvs at cvs.gnupg.org
Fri Jan 12 14:24:53 CET 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG for Windows".

The branch, website has been updated
       via  f57154d6b6926e96f5a36278549e97999d141ee2 (commit)
      from  50793fd4377ec57237841dbaeafe5c20e3f4d0d9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f57154d6b6926e96f5a36278549e97999d141ee2
Author: Bernhard Reiter <bernhard at intevation.de>
Date:   Fri Jan 12 14:23:41 2018 +0100

    Fixes build-history.awk's version number output.
    
     * Fixes output of "Compendium EN:   3.0.0" on english pages
       and the same for german ones.

diff --git a/web/build-history.awk b/web/build-history.awk
index b18bc4d..96c8705 100644
--- a/web/build-history.awk
+++ b/web/build-history.awk
@@ -183,7 +183,8 @@ in_vers && /^~~~/ {
 
 in_vers {
   split ( $0, a, ":" );
-  printf "%s: %s\n", a[1], a[2];
+  # m4 quote the product string, as it may contain a valid macro like in "DE:"
+  printf "`%s': %s\n", a[1], a[2];
 }
 
 

-----------------------------------------------------------------------

Summary of changes:
 web/build-history.awk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
GnuPG for Windows
http://git.gnupg.org



More information about the Gpg4win-commits mailing list