diff options
author | truelight <truelight@openttd.org> | 2007-01-05 17:49:46 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-01-05 17:49:46 +0000 |
commit | 63b3620b9b38e8f1676cee673e364b1468591523 (patch) | |
tree | d57fffeca2e66005dcaf27a693e76e6b8770cac9 | |
parent | 16e3c938ba6d7cb05367fcd7beb5b07e8912c256 (diff) | |
download | openttd-63b3620b9b38e8f1676cee673e364b1468591523.tar.xz |
(svn r7881) [Configure] -Fix: OS2 GCC indentifies itself with os2, not os/2
-rw-r--r-- | config.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib index 5a1c997c9..7cb2fca6b 100644 --- a/config.lib +++ b/config.lib @@ -1226,7 +1226,7 @@ detect_os() { /sunos/ { print "SUNOS"; exit} /cygwin/ { print "CYGWIN"; exit} /mingw/ { print "MINGW"; exit} - /os\/2/ { print "OS2"; exit} + /os2/ { print "OS2"; exit} '` if [ -z "$os" ] |