pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mk/checksum
Module Name: pkgsrc
Committed By: jperkin
Date: Wed Oct 7 18:09:52 UTC 2020
Modified Files:
pkgsrc/mk/checksum: checksum.awk
Log Message:
checksum.awk: Avoid warnings with newer gawk.
Reported by Jörn Clausen in PR#55581.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/mk/checksum/checksum.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/checksum/checksum.awk
diff -u pkgsrc/mk/checksum/checksum.awk:1.2 pkgsrc/mk/checksum/checksum.awk:1.3
--- pkgsrc/mk/checksum/checksum.awk:1.2 Thu Aug 27 11:56:38 2020
+++ pkgsrc/mk/checksum/checksum.awk Wed Oct 7 18:09:52 2020
@@ -1,6 +1,6 @@
#!/usr/bin/awk -f
#
-# $NetBSD: checksum.awk,v 1.2 2020/08/27 11:56:38 jperkin Exp $
+# $NetBSD: checksum.awk,v 1.3 2020/10/07 18:09:52 jperkin Exp $
#
###########################################################################
#
@@ -126,7 +126,7 @@ BEGIN {
if (NF != 4) {
continue
}
- if ($0 ~ /^(\#|\$|Size)/) {
+ if ($0 ~ /^(#|\$|Size)/) {
continue
}
@@ -210,7 +210,7 @@ BEGIN {
if (NF != 4) {
continue
}
- if ($0 ~ /^(\#|\$|Size)/) {
+ if ($0 ~ /^(#|\$|Size)/) {
continue
}
Home |
Main Index |
Thread Index |
Old Index