summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2013-01-06 13:01:46 +0000
committerrubidium <rubidium@openttd.org>2013-01-06 13:01:46 +0000
commit65ff2c1ce645191f8d49a851d04f14ab133b665a (patch)
tree7dab944b174e7563bc00fc83447548f2d3c8d126 /config.lib
parent283256aaddaedfb1305936dabe8e5f3e8856bc9a (diff)
downloadopenttd-65ff2c1ce645191f8d49a851d04f14ab133b665a.tar.xz
(svn r24889) -Fix-ish: extra GRF was built with "broken" grfcodec
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib12
1 files changed, 6 insertions, 6 deletions
diff --git a/config.lib b/config.lib
index 6f215455a..2ce1bba98 100644
--- a/config.lib
+++ b/config.lib
@@ -3169,9 +3169,9 @@ detect_grfcodec() {
log 2 " returned $version"
log 2 " exit code $ret"
- if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "913" ]; then
- if [ -n "$version" ] && [ "$version" -lt "913" ]; then
- log 1 "checking grfcodec... needs at least version 5.1.4 (r913), disabled"
+ if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "949" ]; then
+ if [ -n "$version" ] && [ "$version" -lt "949" ]; then
+ log 1 "checking grfcodec... needs at least version 6.0.2 (r949), disabled"
else
log 1 "checking grfcodec... not found"
fi
@@ -3211,9 +3211,9 @@ detect_nforenum() {
log 2 " returned $version"
log 2 " exit code $ret"
- if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "913" ]; then
- if [ -n "$version" ] && [ "$version" -lt "913" ]; then
- log 1 "checking nforenum... needs at least version 5.1.4 (r913), disabled"
+ if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "949" ]; then
+ if [ -n "$version" ] && [ "$version" -lt "949" ]; then
+ log 1 "checking nforenum... needs at least version 6.0.2 (r949), disabled"
else
log 1 "checking nforenum... not found"
fi