summaryrefslogtreecommitdiff
path: root/make/configure.pm
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2016-03-22 22:15:53 +0000
committerPeter Powell <petpow@saberuk.com>2016-03-22 23:38:43 +0000
commitfb58d69bf5373d8aa3033d4440d2d5f05ed7e39f (patch)
tree80fd6735680e144bffbe7c83533c3c5720aa7a6d /make/configure.pm
parent7c31c005fced1cad45b19c7e9d5c3f294a80281a (diff)
Fix a typo in parse_templates.
Diffstat (limited to 'make/configure.pm')
-rw-r--r--make/configure.pm2
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 $_;
}