A tweak from Alan Burlison for MM 6.10_07 that makes Solaris
Jarkko Hietaniemi [Thu, 19 Jun 2003 14:27:52 +0000 (14:27 +0000)]
make happy.

p4raw-id: //depot/perl@19821

lib/ExtUtils/MM_Unix.pm

index bdf26ed..81818c3 100644 (file)
@@ -3566,7 +3566,7 @@ sub oneliner {
     $cmd =~ s{\n+$}{};
 
     my @cmds = split /\n/, $cmd;
-    $cmd = join "\n\t-e ", map $self->quote_literal($_), @cmds;
+    $cmd = join " \n\t-e ", map $self->quote_literal($_), @cmds;
     $cmd = $self->escape_newlines($cmd);
 
     $switches = join ' ', @$switches;