diff options
author | truelight <truelight@openttd.org> | 2007-01-02 20:06:44 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-01-02 20:06:44 +0000 |
commit | ad53fe0d75fb043bf5dfa594d54c4914e0a0717d (patch) | |
tree | 8c71c6dd105099606eb9ac992bbb3d2e017ae23a | |
parent | 6b82f1dc06f8f197cd54ea87b167eaf60f276846 (diff) | |
download | openttd-ad53fe0d75fb043bf5dfa594d54c4914e0a0717d.tar.xz |
(svn r7761) [Configure] -Fix: a != should be a =, gave funny warnings with dedicated and network enabled
-rw-r--r-- | config.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib index bbbaf0d9f..ac8af3f24 100644 --- a/config.lib +++ b/config.lib @@ -622,7 +622,7 @@ check_params() { log 1 "checking GDI video driver... skipping" log 1 "checking dedicated... found" - if [ "$enable_network" != "0" ] + if [ "$enable_network" = "0" ] then log 1 "WARNING: compiling a dedicated server without network is pointless" sleep 5 |