diff options
author | obache <obache@pkgsrc.org> | 2012-06-13 11:39:33 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2012-06-13 11:39:33 +0000 |
commit | abd3070023fb48bf811a2f11dde51b44ed3f62b0 (patch) | |
tree | 34a98d22530fd2c7e3e2329ef2849476e0b5c42d /pkgtools | |
parent | a0ff4f43d3bca20568155375ba49336130b62545 (diff) | |
download | pkgsrc-abd3070023fb48bf811a2f11dde51b44ed3f62b0.tar.gz |
fix a copy and paste then missing edit error.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/revbump/files/finddepends | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/revbump/files/finddepends b/pkgtools/revbump/files/finddepends index a406b3305c7..60f02fadeb1 100644 --- a/pkgtools/revbump/files/finddepends +++ b/pkgtools/revbump/files/finddepends @@ -1,7 +1,7 @@ #!@PERL@ -w # -*- perl -*- # -# $NetBSD: finddepends,v 1.5 2006/07/11 12:52:14 wiz Exp $ +# $NetBSD: finddepends,v 1.6 2012/06/13 11:39:33 obache Exp $ # # Copyright (c) 2006 The NetBSD Foundation, Inc. # @@ -111,7 +111,7 @@ push(@makefiles, @optionfiles); for $makefile (@makefiles) { # print "* reading $makefile\n"; - open OUT, $makefile or die "can't open $bl3"; + open OUT, $makefile or die "can't open $makefile"; $content = ""; while (<OUT>) { chomp($_); |