diff options
author | wiz <wiz@pkgsrc.org> | 2005-02-23 11:45:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-02-23 11:45:16 +0000 |
commit | ff8cadec1a9699018c796cc0a6d99c45be127ec8 (patch) | |
tree | 0fd663d02e1ffa70794db84691bb27acd9f0e36e /pkgtools | |
parent | 93fdeb7d5e6c4ffa8551e280484f38bbdd0b01bb (diff) | |
download | pkgsrc-ff8cadec1a9699018c796cc0a6d99c45be127ec8.tar.gz |
4.07: Use correct variable in workdir-cleanup warning.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index 2ef9c0c90bf..3b36b92657c 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.222 2005/02/21 23:16:34 wiz Exp $ +# $NetBSD: Makefile,v 1.223 2005/02/23 11:45:16 wiz Exp $ # -DISTNAME= pkglint-4.06 +DISTNAME= pkglint-4.07 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 80cfc453d2e..f06e056e8ae 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.133 2005/02/17 23:31:07 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.134 2005/02/23 11:45:16 wiz Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -646,7 +646,7 @@ EOF if ($opt_committer) { foreach my $wrkdir (<$opt_packagedir/work*>) { if ($opt_warn_workdir && -d $wrkdir) { - log_warning($opt_warn_workdir, NO_LINE_NUMBER, "should be cleaned up before committing the package."); + log_warning($wrkdir, NO_LINE_NUMBER, "should be cleaned up before committing the package."); } } foreach my $backup (<$opt_packagedir/*~>, <$opt_packagedir/*/*~>) { |