diff options
author | rodent <rodent@pkgsrc.org> | 2014-05-08 10:35:58 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2014-05-08 10:35:58 +0000 |
commit | 88a928e70a9eb58e7e5e9efe5911be10cdee3d70 (patch) | |
tree | c0f9be270990d88560613b9ac7d78a7f9869d02d /pkgtools | |
parent | 1d2a22a1eaed3cc399787e809f1e0a9dc31d682e (diff) | |
download | pkgsrc-88a928e70a9eb58e7e5e9efe5911be10cdee3d70.tar.gz |
Don't consider ${WRKDIR}/pax_global_header as a possibility for ${WRKSRC}.
Bump PKGVERSION.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/url2pkg/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/url2pkg/files/url2pkg.pl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/url2pkg/Makefile b/pkgtools/url2pkg/Makefile index bc8cc3b382c..b7aa189d5da 100644 --- a/pkgtools/url2pkg/Makefile +++ b/pkgtools/url2pkg/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.71 2014/03/03 02:37:23 obache Exp $ +# $NetBSD: Makefile,v 1.72 2014/05/08 10:35:58 rodent Exp $ # -PKGNAME= url2pkg-2.18 +PKGNAME= url2pkg-2.19 CATEGORIES= pkgtools MAINTAINER= pkgsrc-users@NetBSD.org diff --git a/pkgtools/url2pkg/files/url2pkg.pl b/pkgtools/url2pkg/files/url2pkg.pl index f9e93a23162..92fa3e7cf58 100644 --- a/pkgtools/url2pkg/files/url2pkg.pl +++ b/pkgtools/url2pkg/files/url2pkg.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: url2pkg.pl,v 1.23 2013/12/28 16:46:29 ryoon Exp $ +# $NetBSD: url2pkg.pl,v 1.24 2014/05/08 10:35:58 rodent Exp $ # # Copyright (c) 2010 The NetBSD Foundation, Inc. @@ -372,7 +372,7 @@ sub adjust_package_from_extracted_distfiles() my @files = (); opendir(WRKDIR, $abs_wrkdir) or die; while (defined(my $f = readdir(WRKDIR))) { - next if $f =~ qr"^\."; + next if ($f =~ qr"^\." || $f eq 'pax_global_header'); push(@files, $f); } closedir(WRKDIR); |