pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk/scripts



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun May  4 20:08:16 UTC 2025

Modified Files:
        pkgsrc/mk/scripts: genindex.awk

Log Message:
mk: fix typo in debug message


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/mk/scripts/genindex.awk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/scripts/genindex.awk
diff -u pkgsrc/mk/scripts/genindex.awk:1.9 pkgsrc/mk/scripts/genindex.awk:1.10
--- pkgsrc/mk/scripts/genindex.awk:1.9  Wed Aug 22 20:48:37 2018
+++ pkgsrc/mk/scripts/genindex.awk      Sun May  4 20:08:16 2025
@@ -1,5 +1,5 @@
 #!/usr/bin/awk -f
-# $NetBSD: genindex.awk,v 1.9 2018/08/22 20:48:37 maya Exp $
+# $NetBSD: genindex.awk,v 1.10 2025/05/04 20:08:16 wiz Exp $
 #
 # Copyright (c) 2002, 2003 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -272,7 +272,7 @@ function find_all_depends(pkg, type, pkg
 # if we find the package already has been fully depended
 # then return the depends list
        if (pkg in alldepends){
-               if (debug) printf("\t%s is allready depended.  Returning %s\n",
+               if (debug) printf("\t%s is already depended.  Returning %s\n",
                                  pkg, alldepends[pkg]);
                return(alldepends[pkg]);
        }



Home | Main Index | Thread Index | Old Index