summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Legge <timlegge@gmail.com>2020-03-25 00:14:32 +0000
committerTimothy Legge <timlegge@gmail.com>2020-03-27 02:02:24 +0000
commitb9f6741f11095ae01848120bc0056a44fcd94273 (patch)
treea2273a14c4ed743e765c999aa11729cc1c93b144
parentb09e522d70329b7b22a7abc1f1673535ac9b1306 (diff)
downloadabuild-b9f6741f11095ae01848120bc0056a44fcd94273.tar.bz2
abuild-b9f6741f11095ae01848120bc0056a44fcd94273.tar.xz
apkbuild-cpan.in: add or between license
-rwxr-xr-xapkbuild-cpan.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/apkbuild-cpan.in b/apkbuild-cpan.in
index 2527735..1fd76aa 100755
--- a/apkbuild-cpan.in
+++ b/apkbuild-cpan.in
@@ -278,7 +278,7 @@ sub do_depends {
my $abstract = $meta->abstract;
say "Abstract: $abstract";
- my $license = join " ", map {$license_mappings->{$_} or $_} $meta->license;
+ my $license = join " OR ", map {$license_mappings->{$_} or $_} $meta->license;
say "License: $license";
my $deps = parse_deps $meta->effective_prereqs->requirements_for('runtime', 'requires');