summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index 0692bd19a..49d0bd296 100755
--- a/configure
+++ b/configure
@@ -34,9 +34,11 @@ chomp($config{GCCVER} = `gcc -dumpversion | cut -c 1`); # Major GCC Ve
chomp($config{GCC34} = `gcc -dumpversion | cut -c 3`); # Minor GCC Version
chomp($config{OSNAME} = `/bin/uname -s`); # Operating System Name
+print "OSN: '" . $config{OSNAME} . "'\n";
+
if (!$config{OSNAME}) {
chomp($config{OSNAME} = `/usr/bin/uname -s`);
- if (!$config{OSNAME}) {
+ if ($config{OSNAME}) {
$config{OSNAME} = "Unknown";
}
}