diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-07 19:46:51 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-07 19:46:51 +0000 |
commit | 69142ae04061663911672bf36bed8e512fc24953 (patch) | |
tree | 92be18db85ae05650cb6d5c7c15b75782bf163c5 /pkgtools | |
parent | 2333064e7f7c3683a7ab161e0700ab5b25b928b9 (diff) | |
download | pkgsrc-69142ae04061663911672bf36bed8e512fc24953.tar.gz |
- Fixed a comment. The order of subroutines is no longer historical.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index eaad3911d71..90fefcf0d97 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -11,7 +11,7 @@ # Freely redistributable. Absolutely no warranty. # # From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp -# $NetBSD: pkglint.pl,v 1.429 2005/12/07 18:46:28 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.430 2005/12/07 19:46:51 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by: @@ -598,10 +598,10 @@ package main; # The checkdir_*() procedures check the files of a directory and call # checkfile_*() on them. # -# Note: The order of subroutines in the file is mostly historical. One -# important property is that there are no back-references, that is, if -# you start reading the code from the top to the bottom you won't find a -# call to a subroutine you haven't yet seen. +# Note: I have tried to order the subroutines so that there are no +# back-references, that is, if you start reading the code from the top to +# the bottom you should not find a call to a subroutine you haven't yet +# seen. #========================================================================== use strict; use warnings; |