summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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');