diff options
author | rodent <rodent@pkgsrc.org> | 2015-04-07 00:10:33 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2015-04-07 00:10:33 +0000 |
commit | e6adac9fb49c24e298b2b7e14aef7fc2237b34dd (patch) | |
tree | db2f3123081360c79e675b09ac5e21d9a471245e /pkgtools/url2pkg/files | |
parent | dea2957328c25be7b933e3e5a21d1314f9a5d032 (diff) | |
download | pkgsrc-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.pl | 3 |
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) } } |