summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig>2006-11-09 15:12:15 +0000
committerrillig <rillig>2006-11-09 15:12:15 +0000
commite8606d286c652b39e07d22215a5aa676ba04e134 (patch)
tree2177ff62ec98dcc2ca8fde2100764e10336c2d9d
parentfa22ff59b5c6309da13b1444beadeaab37611097 (diff)
downloadpkgsrc-e8606d286c652b39e07d22215a5aa676ba04e134.tar.gz
Added a little comment.
The program now exits with the correct exit status in case of errors.
-rw-r--r--mk/check/check-portability.awk10
1 files changed, 9 insertions, 1 deletions
diff --git a/mk/check/check-portability.awk b/mk/check/check-portability.awk
index 853b1ca6ee2..61ebabc5540 100644
--- a/mk/check/check-portability.awk
+++ b/mk/check/check-portability.awk
@@ -1,4 +1,10 @@
-# $NetBSD: check-portability.awk,v 1.1 2006/11/09 14:36:18 rillig Exp $
+# $NetBSD: check-portability.awk,v 1.2 2006/11/09 15:12:15 rillig Exp $
+#
+# Checks a shell file for possible portability problems.
+#
+# ENVIRONMENT
+# (See check-subr.awk)
+#
BEGIN {
found_random = no;
@@ -75,4 +81,6 @@ END {
h = h "package Makefile.\n";
cs_explain(h);
}
+
+ cs_exit();
}