aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2012-10-30 10:17:53 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2012-10-30 10:17:53 +0000
commit1f0745998bf7dafdaf62ed3baa6a17994e7e136d (patch)
treeb71907d422891f7da2bb47cb1aa6f4b1c7e841ce /Tools
parent9279048f3188a58064e0b80a9083ae467f94cfb9 (diff)
downloadports-1f0745998bf7dafdaf62ed3baa6a17994e7e136d.tar.gz
ports-1f0745998bf7dafdaf62ed3baa6a17994e7e136d.zip
Use the 'Created by:' header option per default rather than the RCS only
header. Suggested by: adamw Feature safe: yes
Notes
Notes: svn path=/head/; revision=306665
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/convert-makefile-header.pl11
1 files changed, 6 insertions, 5 deletions
diff --git a/Tools/scripts/convert-makefile-header.pl b/Tools/scripts/convert-makefile-header.pl
index ad146ca7c580..db5414595268 100755
--- a/Tools/scripts/convert-makefile-header.pl
+++ b/Tools/scripts/convert-makefile-header.pl
@@ -19,8 +19,9 @@ sub usage() {
my $bn=basename($0);
print(<< "_ENOUSAGE");
Usage: $bn [OPTION] PORT
- -c use 'created by' header
- -d use simple \$FreeBSD\$ RCS string header (default)
+ -c use 'created by' header (default)
+ -r use simple \$FreeBSD\$ RCS string header
+ (make sure the original creator is ok with this)
-h, --help this help
-n, --nowrite don't change file, just print what would be done
@@ -43,7 +44,7 @@ sub get_creator($) {
MAIN: {
# get options
my $opt={};
- GetOptions($opt, 'help|h', 'default|d', 'createdby|c', 'nowrite|n');
+ GetOptions($opt, 'help|h', 'rcsonly|r', 'createdby|c', 'nowrite|n');
if(defined($opt->{help})) {
usage();
@@ -81,9 +82,9 @@ MAIN: {
}
# write new Makefile
- if(defined($opt->{default}) || !defined($opt->{createdby})) {
+ if(defined($opt->{rcsonly})) {
print $outh "# \$FreeBSD\$\n";
- } elsif(defined($opt->{createdby})) {
+ } elsif(defined($opt->{createdby}) || !defined($opt->{rcsonly})) {
my $creator=get_creator(\@header);
if(defined($creator)) {
print $outh "# Created by: $creator\n";