summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/common.pm9
1 files changed, 1 insertions, 8 deletions
diff --git a/make/common.pm b/make/common.pm
index f0174e0b3..6ca280bec 100644
--- a/make/common.pm
+++ b/make/common.pm
@@ -37,8 +37,7 @@ our @EXPORT = qw(create_directory
get_cpu_count
get_version
read_config_file
- write_config_file
- module_installed);
+ write_config_file);
sub create_directory($$) {
my ($location, $permissions) = @_;
@@ -90,12 +89,6 @@ sub get_version {
return %version;
}
-sub module_installed($) {
- my $module = shift;
- eval("use $module;");
- return !$@;
-}
-
sub get_cpu_count {
my $count = 1;
if ($^O =~ /bsd/) {