mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
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:
@@ -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';
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user