summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig>2006-04-23 08:59:55 +0000
committerrillig <rillig>2006-04-23 08:59:55 +0000
commitb24aed0849e31f0bae4a07ff3b9022d69a8b4050 (patch)
tree3eefe682d426ce7693e852a4f9ae479a4f74908f /pkgtools
parent92e4be220ca536099ae15925d910be571eccbc98 (diff)
downloadpkgsrc-b24aed0849e31f0bae4a07ff3b9022d69a8b4050.tar.gz
Determining the tool names automatically does not work without cheating,
as not all necessary files are included by bsd.tools.mk. Instead, defaults.mk is included by bsd.prefs.mk.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 16f2d0a80b2..e84af639eae 100644
--- a/pkgtools/pkglint/files/pkglint.pl
+++ b/pkgtools/pkglint/files/pkglint.pl
@@ -1,5 +1,5 @@
#! @PERL@
-# $NetBSD: pkglint.pl,v 1.562 2006/04/22 11:22:40 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.563 2006/04/23 08:59:55 rillig Exp $
#
# pkglint - static analyzer and checker for pkgsrc packages
@@ -1700,7 +1700,7 @@ sub load_tool_names() {
# Get the list of files that define the tools from bsd.tools.mk.
#
- @tool_files = ();
+ @tool_files = ("defaults.mk");
{
my $fname = "${current_dir}/${pkgsrcdir}/mk/tools/bsd.tools.mk";
my $lines = load_lines($fname, true);