summaryrefslogtreecommitdiff
path: root/configpm
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-10-05 20:48:10 +0200
committerNicholas Clark <nick@ccl4.org>2009-10-05 21:07:34 +0200
commit2dc296d24d23e7bc6c24e294afa31fe89ea1e548 (patch)
treefc91b3ef9e0a06e8e040f20fc2a0a3d64bb0ae34 /configpm
parent7d113631e107a7f1051ce04bff5d67ef5d96c83a (diff)
downloadperl-2dc296d24d23e7bc6c24e294afa31fe89ea1e548.tar.gz
$^O is initalised to OSNAME, so no need to return the latter from Internals::V.
Saves having object code to build one SV that Config::_V can find out by itself.
Diffstat (limited to 'configpm')
-rwxr-xr-xconfigpm4
1 files changed, 2 insertions, 2 deletions
diff --git a/configpm b/configpm
index 9fb30eeaeb..b8fea15674 100755
--- a/configpm
+++ b/configpm
@@ -124,7 +124,7 @@ use strict;
# use vars pulls in Carp
sub _V {
- my ($bincompat, $non_bincompat, $date, $osname, @patches) = Internals::V();
+ my ($bincompat, $non_bincompat, $date, @patches) = Internals::V();
my $opts = join ' ', sort split ' ', "$bincompat $non_bincompat";
@@ -146,7 +146,7 @@ sub _V {
print "\t$_\n" foreach @patches;
}
- print " Built under $osname\n";
+ print " Built under $^O\n";
print " $date\n" if defined $date;