diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-19 02:42:25 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-19 02:42:25 +0000 |
commit | 66009d7d6586e65f9b681c32ac946d0b637426e0 (patch) | |
tree | ce72ade7d4d6c4b5702003590a374a9291e3cf44 /configure | |
parent | 17f0f36b113469962f8e10a1c4d4f2df9c71f594 (diff) |
Uname fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1441 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ chomp($config{GCC34} = `gcc -dumpversion | cut -c 3`); # Minor GCC Ve chomp($config{OSNAME} = `/bin/uname -s`); # Operating System Name if (!$config{OSNAME}) { - chomp($config{OSNAME} = `uname -s`); + chomp($config{OSNAME} = `/usr/bin/uname -s`); if (!$config{OSNAME}) { $config{OSNAME} = "Unknown"; } |