summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-19 02:41:34 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-19 02:41:34 +0000
commit17f0f36b113469962f8e10a1c4d4f2df9c71f594 (patch)
treeeee463d71dfe99bcad0a74c2fc551428a2de9124 /configure
parentbe7aac1c8e3af43516b7cca966bffd9790a1ae6a (diff)
Fixes to uname stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1440 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index 27ee1f1ed..913d4950a 100755
--- a/configure
+++ b/configure
@@ -35,7 +35,10 @@ chomp($config{GCC34} = `gcc -dumpversion | cut -c 3`); # Minor GCC Ve
chomp($config{OSNAME} = `/bin/uname -s`); # Operating System Name
if (!$config{OSNAME}) {
- $config{OSNAME} = "Unknown"; # For use when uname fails.
+ chomp($config{OSNAME} = `uname -s`);
+ if (!$config{OSNAME}) {
+ $config{OSNAME} = "Unknown";
+ }
}
if (!$config{MAX_CLIENT_T}) {