diff options
author | rubidium <rubidium@openttd.org> | 2007-01-02 21:30:33 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-01-02 21:30:33 +0000 |
commit | 5b050f8c86ce7c0370626d723923083427b2f4ce (patch) | |
tree | 84a75b474784197c4b6405dcefd77191bd88733f | |
parent | e0c46049df467742a040a7b1d709c49e56bf3a94 (diff) | |
download | openttd-5b050f8c86ce7c0370626d723923083427b2f4ce.tar.xz |
(svn r7769) -Fix (r7759): the strgen -t flag (todo) was set when it shouldn't be set and vice-versa.
-rw-r--r-- | config.lib | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.lib b/config.lib index 5afba7de0..c9a84299e 100644 --- a/config.lib +++ b/config.lib @@ -657,11 +657,11 @@ check_params() { if [ "$enable_translator" != "0" ] then log 1 "checking translator... debug" - strgen_flags="" - else - log 1 "checking translator... no" # -t shows TODO items, normally they are muted strgen_flags="-t" + else + log 1 "checking translator... no" + strgen_flags="" fi if [ "$enable_assert" != "0" ] |