summaryrefslogtreecommitdiff
path: root/scripts/makeyhttpd.pl
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
commit520f54d6219b7c625b4e07463ac393e6982ddab6 (patch)
tree74b4483786b3842b1a0384fd33deb7483276bea1 /scripts/makeyhttpd.pl
parentae4e87df37ed8904de92c7cf2f3a11128cda2a21 (diff)
tagging ychat-0.7.1ychat-0.7.1
Diffstat (limited to 'scripts/makeyhttpd.pl')
-rw-r--r--scripts/makeyhttpd.pl10
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/makeyhttpd.pl b/scripts/makeyhttpd.pl
index 101343a..2805360 100644
--- a/scripts/makeyhttpd.pl
+++ b/scripts/makeyhttpd.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# The yChat & yhttpd Project (2004, 2005)
+# The yChat & yhttpd Project (2004)
#
# This scripts modifies the yChat sources to yhttpd sources.
@@ -17,8 +17,6 @@ my @delete = (
'src/data',
'src/irc',
'src/contrib/crypt',
- 'src/modl.h',
- 'src/modl.cpp',
'src/mods',
'src/mods/commands',
'src/mods/irc',
@@ -77,7 +75,7 @@ foreach (@delete) {
system("rm -Rf $_");
}
-print "\nDeleting CVS directories\n";
+print "Deleting CVS directories\n";
system("find . -name CVS | xargs rm -Rf");
print "Creating new dirs\n->";
@@ -86,14 +84,14 @@ foreach (@createdir) {
system("mkdir $_");
}
-print "\nRenaming config file\n";
+print "Renaming config file\n";
system("mv etc/ychat.conf etc/yhttpd.conf");
print "Moving html templates\n";
system("mv demo.html html/index.html");
system("mv test.cgi notfound.html style.css html");
-print "Removing marked lines of code\n->";
+print "Removing marked lines of code\n ->";
&remove_marked_lines('.');
sub remove_marked_lines {