diff options
author | rillig <rillig@pkgsrc.org> | 2019-10-01 18:43:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-10-01 18:43:46 +0000 |
commit | d8139bbf2e67d5f7cf2efdacebfe4e9c728103c4 (patch) | |
tree | b5bfc10570e14e85fc2e4e8a756f357681da97ef /pkgtools/url2pkg | |
parent | affd716da2d31d9cd7428a415a6fcf2b4e1f6a8f (diff) | |
download | pkgsrc-d8139bbf2e67d5f7cf2efdacebfe4e9c728103c4.tar.gz |
pkgtools/url2pkg: update to 2.37
Changes since 2.36:
* Fixed generation of the package Makefile. Due to a typo, the line that
included bsd.pkg.mk had been omitted, making any generated package fail.
Diffstat (limited to 'pkgtools/url2pkg')
-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 9780f1b8c8c..d99c8b6e36e 100644 --- a/pkgtools/url2pkg/Makefile +++ b/pkgtools/url2pkg/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.100 2019/09/12 18:23:00 rillig Exp $ +# $NetBSD: Makefile,v 1.101 2019/10/01 18:43:46 rillig Exp $ -PKGNAME= url2pkg-2.36 +PKGNAME= url2pkg-2.37 CATEGORIES= pkgtools MAINTAINER= rillig@NetBSD.org diff --git a/pkgtools/url2pkg/files/url2pkg.pl b/pkgtools/url2pkg/files/url2pkg.pl index e8d90251b85..f7d98d570e5 100644 --- a/pkgtools/url2pkg/files/url2pkg.pl +++ b/pkgtools/url2pkg/files/url2pkg.pl @@ -1,5 +1,5 @@ #! @PERL5@ -# $NetBSD: url2pkg.pl,v 1.73 2019/09/13 13:31:39 rillig Exp $ +# $NetBSD: url2pkg.pl,v 1.74 2019/10/01 18:43:46 rillig Exp $ # # Copyright (c) 2010 The NetBSD Foundation, Inc. @@ -838,7 +838,7 @@ sub adjust_package_from_extracted_distfiles($) { $lines->add(@bl3_lines); $lines->add(map { $_ = ".include \"$_\"" } @includes); - $lines->add($makefile_lines->[$marker_index + 1 .. $#$makefile_lines]); + $lines->add(@$makefile_lines[$marker_index + 1 .. $#$makefile_lines]); $lines->append("CATEGORIES", join(" ", @categories)); |