diff options
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/addport | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/scripts/addport b/Tools/scripts/addport index e7c83e0b8c5..4048a975984 100755 --- a/Tools/scripts/addport +++ b/Tools/scripts/addport @@ -405,6 +405,10 @@ foreach my $thisdir (@dirs) { } } + # strip svn:executable if added-- not allowed + + system("cd $portname && svn -qR propdel svn:executable"); + # figure out where the port name belongs in category Makefile my ($spaces, @ports) = &lsports; errx(1, "Error: $portname already exists in $category\'s Makefile") if (&contains($portname, @ports)); |