-use a tab not a space

This commit is contained in:
Philip M. Gollucci 2010-09-22 19:02:47 +00:00
parent 6d823cc849
commit 71e4661dfa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=261639

View file

@ -142,7 +142,7 @@ sub mark {
$i_maintainer > 0 ? $i_maintainer : print "Can't find location to insert", next;
my @newlines = @lines[0..$loc];
push @newlines, "\n", "MAKE_JOBS_" . ($Safe ? "SAFE" : "UNSAFE") . "= yes\n";
push @newlines, "\n", "MAKE_JOBS_" . ($Safe ? "SAFE" : "UNSAFE") . "=\tyes\n";
push @newlines, @lines[$loc+1..$#lines];
open my $mk_o, '>', $mfile or die "Can't open [$mfile] b/c [$!]";