summaryrefslogtreecommitdiff
path: root/pkgtools/url2pkg/files
diff options
context:
space:
mode:
authorrodent <rodent@pkgsrc.org>2015-04-07 00:10:33 +0000
committerrodent <rodent@pkgsrc.org>2015-04-07 00:10:33 +0000
commite6adac9fb49c24e298b2b7e14aef7fc2237b34dd (patch)
treedb2f3123081360c79e675b09ac5e21d9a471245e /pkgtools/url2pkg/files
parentdea2957328c25be7b933e3e5a21d1314f9a5d032 (diff)
downloadpkgsrc-e6adac9fb49c24e298b2b7e14aef7fc2237b34dd.tar.gz
Don't consider "package.xml" as a candidate for ${WRKSRC}. This can affect
PECL packages. Bump PKGVERSION.
Diffstat (limited to 'pkgtools/url2pkg/files')
-rw-r--r--pkgtools/url2pkg/files/url2pkg.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgtools/url2pkg/files/url2pkg.pl b/pkgtools/url2pkg/files/url2pkg.pl
index 7e32c826ce6..364860d4ada 100644
--- a/pkgtools/url2pkg/files/url2pkg.pl
+++ b/pkgtools/url2pkg/files/url2pkg.pl
@@ -1,5 +1,5 @@
#! @PERL@
-# $NetBSD: url2pkg.pl,v 1.27 2015/04/04 04:00:49 rodent Exp $
+# $NetBSD: url2pkg.pl,v 1.28 2015/04/07 00:10:33 rodent Exp $
#
# Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -421,6 +421,7 @@ sub adjust_package_from_extracted_distfiles()
given ($f) {
next when qr"^\.";
next when 'pax_global_header';
+ next when 'package.xml';
next when qr".*\.gemspec";
default { push(@files, $f) }
}