Skip to content

Commit 4af3994

Browse files
committed
Fix precedence problem
1 parent e6e20e2 commit 4af3994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ExtUtils/MM_Unix.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2399,7 +2399,7 @@ sub linkext {
23992399
$linktype = $self->{LINKTYPE} unless defined $linktype;
24002400
if (defined $linktype and $linktype eq '' and @{ $self->{DIR} || [] }) {
24012401
warn "Warning: LINKTYPE set to '', no longer necessary\n";
2402-
$extra = 'subdirs_' . $Config{usedl} ? 'dynamic' : 'static';
2402+
$extra = 'subdirs_' . ($Config{usedl} ? 'dynamic' : 'static');
24032403
}
24042404
$linktype = '$(LINKTYPE)' unless defined $linktype;
24052405
"

0 commit comments

Comments
 (0)