summaryrefslogtreecommitdiff
path: root/pkgtools/url2pkg
diff options
context:
space:
mode:
authorrodent <rodent>2014-05-08 10:35:58 +0000
committerrodent <rodent>2014-05-08 10:35:58 +0000
commit39e71d0eb4a2a0b4da75b6abc5b8d93089e8a99a (patch)
treec1b41da2ebfe613bf16f645b2a481fdebd651c2f /pkgtools/url2pkg
parent5ec64dc385ebab9d49e53af7bf42863dd848f967 (diff)
downloadpkgsrc-39e71d0eb4a2a0b4da75b6abc5b8d93089e8a99a.tar.gz
Don't consider ${WRKDIR}/pax_global_header as a possibility for ${WRKSRC}.
Bump PKGVERSION.
Diffstat (limited to 'pkgtools/url2pkg')
-rw-r--r--pkgtools/url2pkg/Makefile4
-rw-r--r--pkgtools/url2pkg/files/url2pkg.pl4
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);