From: Jarkko Hietaniemi Date: Thu, 19 Jun 2003 14:27:52 +0000 (+0000) Subject: A tweak from Alan Burlison for MM 6.10_07 that makes Solaris X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7b8ec533fbbf961afe3ffcf21e37d348e8d6d14e;p=p5sagit%2Fp5-mst-13.2.git A tweak from Alan Burlison for MM 6.10_07 that makes Solaris make happy. p4raw-id: //depot/perl@19821 --- diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index bdf26ed..81818c3 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -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;