summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gen_ebuild.pl')
-rwxr-xr-xscripts/gen_ebuild.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/gen_ebuild.pl b/scripts/gen_ebuild.pl
index a54a665fd..e5065e6ce 100755
--- a/scripts/gen_ebuild.pl
+++ b/scripts/gen_ebuild.pl
@@ -197,7 +197,9 @@ if ( scalar @$lics == 1 ) {
$fh->say( 'LICENSE=" ' . $lics->[0] . '"' );
}
elsif ( scalar @$lics > 1 ) {
- $fh->say( 'LICENSE=" || ( ' . ( join q{ }, @$lics ) . ' )"' );
+ if ( not ( $lics->[0] eq 'Artistic' && $lics->[1] eq 'GPL-2' ) ) {
+ $fh->say( 'LICENSE=" || ( ' . ( join q{ }, @$lics ) . ' )"' );
+ }
}
else {
$fh->say('LICENSE=""');