Moved generation of modperl/functions.cpp to Makefile.

This should fix some compilation issues.

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2219 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
darthgandalf
2010-12-30 18:29:42 +00:00
parent 2472ea7a13
commit ece2c885da
3 changed files with 7 additions and 807 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ use warnings;
use IO::File;
use feature 'switch', 'say';
open my $in, "functions.in" or die;
open my $out, "> functions.cpp" or die;
open my $in, $ARGV[0] or die;
open my $out, ">", $ARGV[1] or die;
print $out <<'EOF';
/*