diff options
author | jlam <jlam@pkgsrc.org> | 2006-01-21 21:46:24 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-01-21 21:46:24 +0000 |
commit | d04be0cdcb42aa52998072cc5b356fb3e195f190 (patch) | |
tree | 1231023f898a0638c834dd7f3c18fbf8a6ee0672 /mk/scripts | |
parent | 6a485fcc016c4b6cfd47a7d90fbc4cef55f0c377 (diff) | |
download | pkgsrc-d04be0cdcb42aa52998072cc5b356fb3e195f190.tar.gz |
duh... stacks are LIFOs not FIFOs.
Diffstat (limited to 'mk/scripts')
-rwxr-xr-x | mk/scripts/depends-depth-first.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/scripts/depends-depth-first.awk b/mk/scripts/depends-depth-first.awk index 1641e8f99dc..3a56145304e 100755 --- a/mk/scripts/depends-depth-first.awk +++ b/mk/scripts/depends-depth-first.awk @@ -1,6 +1,6 @@ #!/usr/bin/awk -f # -# $NetBSD: depends-depth-first.awk,v 1.3 2006/01/18 17:43:08 jlam Exp $ +# $NetBSD: depends-depth-first.awk,v 1.4 2006/01/21 21:46:24 jlam Exp $ # # Copyright (c) 2006 The NetBSD Foundation, Inc. # All rights reserved. @@ -257,7 +257,7 @@ function visit(pkgpath, cmd, dir) { # top(stack) # push(stack, element) # pop(stack) -# The well-known functions associated with a FIFO. +# The well-known functions associated with a LIFO. # ###################################################################### function empty(stack) { |