summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig>2006-11-10 08:17:06 +0000
committerrillig <rillig>2006-11-10 08:17:06 +0000
commit3a06b868b321753819da54d4a5e9e2e0fc2f1973 (patch)
tree87762a19e8918d90e0fc5b4893a6aa15df015107
parent7ff2a0e89a59b1a7db18323dbaf9c23d23e7f740 (diff)
downloadpkgsrc-3a06b868b321753819da54d4a5e9e2e0fc2f1973.tar.gz
Fixed the warning from GNU awk that in strings, \$ is the same as a
plain $.
-rw-r--r--mk/check/check-portability.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/check/check-portability.awk b/mk/check/check-portability.awk
index 61ebabc5540..3bd21771e9b 100644
--- a/mk/check/check-portability.awk
+++ b/mk/check/check-portability.awk
@@ -1,4 +1,4 @@
-# $NetBSD: check-portability.awk,v 1.2 2006/11/09 15:12:15 rillig Exp $
+# $NetBSD: check-portability.awk,v 1.3 2006/11/10 08:17:06 rillig Exp $
#
# Checks a shell file for possible portability problems.
#
@@ -24,7 +24,7 @@ function check_random(line) {
} else if (line ~ /\$RANDOM/) {
found_random = yes;
- cs_warning_heading("Found \$RANDOM:");
+ cs_warning_heading("Found $RANDOM:");
cs_warning_msg(cs_fname ": " $0);
}
}