Skip to content

Commit 3d7a8af

Browse files
committed
Whitespace tweaks
1 parent fead8dc commit 3d7a8af

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

lib/ExtUtils/MM_Unix.pm

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -933,19 +933,19 @@ sub dynamic_lib {
933933
my @m = $self->xs_dynamic_lib_macros(\%attribs);
934934
my @libs;
935935
if ($self->{XSMULTI}) {
936-
my @exts = $self->_xs_list_basenames;
937-
for my $ext (@exts) {
938-
my ($v, $d, $f) = File::Spec->splitpath($ext);
939-
my @d = File::Spec->splitdir($d);
940-
shift @d if $d[0] eq 'lib';
941-
my $instdir = File::Spec->catdir('$(INST_ARCHLIB)', 'auto', @d, $f);
942-
my $instfile = File::Spec->catfile($instdir, "$f.\$(DLEXT)");
943-
my $objfile = "$ext\$(OBJ_EXT)";
944-
my $exportlist = "$ext.def";
945-
push @libs, [ $objfile, $instfile, $instdir, $objfile, $exportlist ];
946-
}
936+
my @exts = $self->_xs_list_basenames;
937+
for my $ext (@exts) {
938+
my ($v, $d, $f) = File::Spec->splitpath($ext);
939+
my @d = File::Spec->splitdir($d);
940+
shift @d if $d[0] eq 'lib';
941+
my $instdir = File::Spec->catdir('$(INST_ARCHLIB)', 'auto', @d, $f);
942+
my $instfile = File::Spec->catfile($instdir, "$f.\$(DLEXT)");
943+
my $objfile = "$ext\$(OBJ_EXT)";
944+
my $exportlist = "$ext.def";
945+
push @libs, [ $objfile, $instfile, $instdir, $objfile, $exportlist ];
946+
}
947947
} else {
948-
@libs = ([ qw($(OBJECT) $(INST_DYNAMIC) $(INST_ARCHAUTODIR) $(LDFROM) $(EXPORT_LIST)) ]);
948+
@libs = ([ qw($(OBJECT) $(INST_DYNAMIC) $(INST_ARCHAUTODIR) $(LDFROM) $(EXPORT_LIST)) ]);
949949
}
950950
push @m, map { $self->xs_make_dynamic_lib(\%attribs, @$_); } @libs;
951951

@@ -992,7 +992,7 @@ sub xs_make_dynamic_lib {
992992
my ($self, $attribs, $from, $to, $todir, $ldfrom, $exportlist) = @_;
993993
$exportlist = '' if $exportlist ne '$(EXPORT_LIST)';
994994
my $armaybe = $self->_xs_armaybe($attribs);
995-
my @m = sprintf '%s: %s $(MYEXTLIB) %s$(DFSEP).exists %s $(PERL_ARCHIVEDEP) $(PERL_ARCHIVE_AFTER) $(INST_DYNAMIC_DEP)'."\n", $to, $from, $todir, $exportlist;
995+
my @m = sprintf '%s : %s $(MYEXTLIB) %s$(DFSEP).exists %s $(PERL_ARCHIVEDEP) $(PERL_ARCHIVE_AFTER) $(INST_DYNAMIC_DEP)'."\n", $to, $from, $todir, $exportlist;
996996
if ($armaybe ne ':'){
997997
$ldfrom = 'tmp$(LIB_EXT)';
998998
push(@m,' $(ARMAYBE) cr '.$ldfrom.' $(OBJECT)'."\n");
@@ -3839,7 +3839,7 @@ config :: $(FIRST_MAKEFILE) blibdirs
38393839
';
38403840

38413841
push @m, '
3842-
$(O_FILES): $(H_FILES)
3842+
$(O_FILES) : $(H_FILES)
38433843
' if @{$self->{O_FILES} || []} && @{$self->{H} || []};
38443844

38453845
push @m, q{

0 commit comments

Comments
 (0)