diff options
author | Peter Powell <petpow@saberuk.com> | 2016-03-22 22:15:53 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2016-03-22 23:38:43 +0000 |
commit | fb58d69bf5373d8aa3033d4440d2d5f05ed7e39f (patch) | |
tree | 80fd6735680e144bffbe7c83533c3c5720aa7a6d /make/configure.pm | |
parent | 7c31c005fced1cad45b19c7e9d5c3f294a80281a (diff) |
Fix a typo in parse_templates.
Diffstat (limited to 'make/configure.pm')
-rw-r--r-- | make/configure.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 $_; } |