diff options
author | rillig <rillig@pkgsrc.org> | 2006-11-09 15:12:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-11-09 15:12:15 +0000 |
commit | a226b8965192ad0905ed065ed1fd56a17efac672 (patch) | |
tree | 2177ff62ec98dcc2ca8fde2100764e10336c2d9d /mk/check | |
parent | 085172dcd3b2b6481a0534fb9a61df53e3a4def8 (diff) | |
download | pkgsrc-a226b8965192ad0905ed065ed1fd56a17efac672.tar.gz |
Added a little comment.
The program now exits with the correct exit status in case of errors.
Diffstat (limited to 'mk/check')
-rw-r--r-- | mk/check/check-portability.awk | 10 |
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(); } |