pkgsrc-Changes archive

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

CVS commit: pkgsrc/mk/scripts



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu Jul  7 12:01:22 UTC 2016

Modified Files:
        pkgsrc/mk/scripts: genreadme.awk

Log Message:
Be less verbose.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 pkgsrc/mk/scripts/genreadme.awk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/scripts/genreadme.awk
diff -u pkgsrc/mk/scripts/genreadme.awk:1.36 pkgsrc/mk/scripts/genreadme.awk:1.37
--- pkgsrc/mk/scripts/genreadme.awk:1.36        Sat Oct  3 13:17:57 2015
+++ pkgsrc/mk/scripts/genreadme.awk     Thu Jul  7 12:01:22 2016
@@ -1,5 +1,5 @@
 #!/usr/bin/awk -f
-# $NetBSD: genreadme.awk,v 1.36 2015/10/03 13:17:57 bsiegert Exp $
+# $NetBSD: genreadme.awk,v 1.37 2016/07/07 12:01:22 wiz Exp $
 #
 # Copyright (c) 2002, 2003, 2005, 2006, 2015 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -468,7 +468,9 @@ END {
                        gsub(/^[ \t]*SUBDIR.*=[ \t]*/, "", category);
                        catdir = PKGSRCDIR"/"category;
                        readmenew = catdir"/"readme_name;
-                       printf("Category = %s\n", category);
+                       if (quiet != "yes") {
+                               printf("Category = %s\n", category);
+                       }
                        cat_make = catdir"/Makefile";
                        pkgs = "";
                        pkgs_file = TMPDIR "/pkgs_file";



Home | Main Index | Thread Index | Old Index