summaryrefslogtreecommitdiff
path: root/make/common.pm
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-03-24 21:44:33 +0000
committerPeter Powell <petpow@saberuk.com>2017-03-25 00:54:25 +0000
commitc185edf71cdd9aa4b72ffd9059534d8ac0cb1249 (patch)
treef8767f7b21a0f3f623254520c14209faaa687443 /make/common.pm
parent64273cc51bcd7efb60e7c1636ee75696a791db22 (diff)
Extract core logic of write_configure_cache to write_config_file.
Diffstat (limited to 'make/common.pm')
-rw-r--r--make/common.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/make/common.pm b/make/common.pm
index d5a2f06c7..f0174e0b3 100644
--- a/make/common.pm
+++ b/make/common.pm
@@ -31,10 +31,13 @@ use Exporter qw(import);
use File::Path qw(mkpath);
use File::Spec::Functions qw(rel2abs);
+use make::console;
+
our @EXPORT = qw(create_directory
get_cpu_count
get_version
read_config_file
+ write_config_file
module_installed);
sub create_directory($$) {
@@ -121,4 +124,15 @@ sub read_config_file($) {
return %config;
}
+sub write_config_file($%) {
+ my $path = shift;
+ my %config = @_;
+ open(my $fh, '>', $path) or print_error "unable to write to $path: $!";
+ while (my ($key, $value) = each %config) {
+ $value //= '';
+ say $fh "$key $value";
+ }
+ close $fh;
+}
+
1;