summaryrefslogtreecommitdiff
path: root/lib/make/new_thorn.pl
diff options
context:
space:
mode:
authorknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2010-01-26 15:06:19 +0000
committerknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2010-01-26 15:06:19 +0000
commit7ccb365acb1791ed843a5b2b64981d3f524c395a (patch)
treec63d5ea23f80dcbbee0abbae8c406d90fe200b34 /lib/make/new_thorn.pl
parent2fcd5b484324760b4a5b7f5c092225714437afb0 (diff)
Do not include CVS headers in new thorns. Not only are they not universaly liked, but cvs is also not that common anymore
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4595 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/new_thorn.pl')
-rwxr-xr-xlib/make/new_thorn.pl4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/make/new_thorn.pl b/lib/make/new_thorn.pl
index 29cfbd71..db2c9ea6 100755
--- a/lib/make/new_thorn.pl
+++ b/lib/make/new_thorn.pl
@@ -77,7 +77,6 @@ mkdir("test", 0755);
open(OUT, ">interface.ccl") || die "Cannot create interface.ccl";
print OUT "# Interface definition for thorn $thorn_name\n";
-print OUT "# \$" . "Header:\$\n\n";
print OUT "implements:\n";
print OUT "inherits:\n";
@@ -86,14 +85,12 @@ close OUT;
open(OUT, ">param.ccl") || die "Cannot create param.ccl";
print OUT "# Parameter definitions for thorn $thorn_name\n";
-print OUT "# \$" . "Header:\$\n";
close OUT;
open(OUT, ">schedule.ccl") || die "Cannot create schedule.ccl";
print OUT "# Schedule definitions for thorn $thorn_name\n";
-print OUT "# \$" . "Header:\$\n";
close OUT;
@@ -134,7 +131,6 @@ chdir("src");
open(OUT, ">make.code.defn") || die "Cannot create make.code.defn";
print OUT "# Main make.code.defn file for thorn $thorn_name\n";
-print OUT "# \$" . "Header:\$\n";
print OUT "\n";
print OUT "# Source files in this directory\n";
print OUT "SRCS = \n";