diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-09-22 19:02:47 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-09-22 19:02:47 +0000 |
commit | 71e4661dfa930943b67d82d4e360f6a87a393c04 (patch) | |
tree | 2f5cd8d38c89b21c594ad2cf3274f13f9213f6aa /Tools | |
parent | 6d823cc849097fc3bdb9358b9ce76218447ef600 (diff) | |
download | ports-71e4661dfa930943b67d82d4e360f6a87a393c04.tar.gz ports-71e4661dfa930943b67d82d4e360f6a87a393c04.zip |
Notes
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 0a7ed91b46ea..24e70e0b4ad5 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 [$!]"; |