diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-09-23 03:02:47 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-09-23 03:02:47 +0800 |
commit | 33531379dbf83d5e59c1baf3b9f65c70406f9804 (patch) | |
tree | 38bb343ebe892be6a5dd1df19cf8ae8935bd7a7b /Tools | |
parent | 55daa3e6a0036512dc088ebfaebc6e58b13b19e5 (diff) | |
download | freebsd-ports-graphics-33531379dbf83d5e59c1baf3b9f65c70406f9804.tar.gz freebsd-ports-graphics-33531379dbf83d5e59c1baf3b9f65c70406f9804.tar.zst freebsd-ports-graphics-33531379dbf83d5e59c1baf3b9f65c70406f9804.zip |
-use a tab not a space
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/mark_safe.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/mark_safe.pl b/Tools/scripts/mark_safe.pl index 0a7ed91b46e..24e70e0b4ad 100755 --- a/Tools/scripts/mark_safe.pl +++ b/Tools/scripts/mark_safe.pl @@ -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 [$!]"; |