Alien-geos-af
view release on metacpan or search on metacpan
$file_contents .= $line;
}
$fh->close;
my $permissions = (stat ($geos_config))[2];
rename $geos_config, "$geos_config.bak";
open my $ofh, '>', $geos_config
or die "Could not open $geos_config for writing, $!";
print {$ofh} $file_contents;
$ofh->close or die $!;
# make sure we get the same permissions
chmod $permissions, $geos_config or die $!;
return;
}
sub set_runtime_props_from_config {
my ($build) = @_;
$build->log ('set_runtime_props_from_config: Currently in ' . getcwd());
$build->log("UPDATING PKG_CONFIG_PATH");
( run in 0.265 second using v1.01-cache-2.11-cpan-496ff517765 )