From: Peter Powell Date: Tue, 22 Mar 2016 22:15:53 +0000 (+0000) Subject: Fix a typo in parse_templates. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;ds=sidebyside;h=fb58d69bf5373d8aa3033d4440d2d5f05ed7e39f;p=user%2Fhenk%2Fcode%2Finspircd.git Fix a typo in parse_templates. --- diff --git a/make/configure.pm b/make/configure.pm index e314e6d15..06dd4de19 100644 --- a/make/configure.pm +++ b/make/configure.pm @@ -419,7 +419,7 @@ sub parse_templates($$$) { # Write the template file. print_format "Writing <|GREEN $target|> ...\n"; - open(TARGET, '>', $target) or print_error "unable to write $_: $!"; + open(TARGET, '>', $target) or print_error "unable to write $target: $!"; foreach (@final_lines) { say TARGET $_; }