Change 12190 by pudge@pudge-mobile on 2001/09/25 02:37:38 Remove literal tabs from source in MM_MacOS.pm (Thomas Wegner) Affected files ... ... //depot/maint-5.6/macperl/macos/lib/ExtUtils/MM_MacOS.pm#4 edit Differences ... ==== //depot/maint-5.6/macperl/macos/lib/ExtUtils/MM_MacOS.pm#4 (text) ==== Index: perl/macos/lib/ExtUtils/MM_MacOS.pm --- perl/macos/lib/ExtUtils/MM_MacOS.pm.~1~ Mon Sep 24 20:45:06 2001 +++ perl/macos/lib/ExtUtils/MM_MacOS.pm Mon Sep 24 20:45:06 2001 @@ -738,7 +738,7 @@ push(@m," $self->{BASEEXT}.exp: Makefile.PL$extlib -",' $(PERL) "-I$(PERL_LIB)" -e \'use ExtUtils::Mksymlists; ', +", qq[\t\$(PERL) "-I\$(PERL_LIB)" -e 'use ExtUtils::Mksymlists; ], 'Mksymlists("NAME" => "',$self->{NAME},'", "DL_FUNCS" => ', neatvalue($funcs),', "DL_VARS" => ', neatvalue($vars), ');\' '); @@ -849,8 +849,8 @@ my(@otherfiles) = ($self->{MAKEFILE}, "$self->{MAKEFILE}.old"); # Makefiles last push(@otherfiles, patternify($attribs{FILES})) if $attribs{FILES}; - push(@m, " \$(RM_RF) @otherfiles\n") if @otherfiles; - push(@m, " $attribs{POSTOP}\n") if $attribs{POSTOP}; + push(@m, "\t\$(RM_RF) @otherfiles\n") if @otherfiles; + push(@m, "\t$attribs{POSTOP}\n") if $attribs{POSTOP}; join("", @m); } @@ -866,7 +866,7 @@ } qq' install install_static install_dynamic :: - \$(MACPERL_SRC)PerlInstall -l \$(PERL_LIB) +\t\$(MACPERL_SRC)PerlInstall -l \$(PERL_LIB) .INCLUDE : \$(MACPERL_SRC)BulkBuildRules.mk '; @@ -895,10 +895,10 @@ foreach $target (@$list) { push @m, " ProcessPL :: $target - $self->{NOECHO}\$(NOOP) +\t$self->{NOECHO}\$(NOOP) $target :: $plfile - \$(PERL) -I\$(MACPERL_LIB) -I\$(PERL_LIB) $plfile $target +\t\$(PERL) -I\$(MACPERL_LIB) -I\$(PERL_LIB) $plfile $target "; } } End of Patch.