summaryrefslogtreecommitdiff
path: root/Makefile.src.in
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-07-31 19:19:29 +0000
committersmatz <smatz@openttd.org>2008-07-31 19:19:29 +0000
commitc04965c8dbd2e18fa8faf85344962072783cb56a (patch)
tree5969ddaa70aa5e88333016ef7676650b7f07d9d6 /Makefile.src.in
parent10f450e2d4f48d05c95716aacc204aad3bbfa61f (diff)
downloadopenttd-c04965c8dbd2e18fa8faf85344962072783cb56a.tar.xz
(svn r13901) -Fix: make sure REV_NR isn't empty, rev.cpp would fail to compile
Diffstat (limited to 'Makefile.src.in')
-rw-r--r--Makefile.src.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.src.in b/Makefile.src.in
index 71e403f0e..bac7dacb1 100644
--- a/Makefile.src.in
+++ b/Makefile.src.in
@@ -143,9 +143,11 @@ endif
endif
endif
-# Make sure we have something in REV
+# Make sure we have something in REV and REV_NR
ifeq ($(REV),)
REV := norev000
+endif
+ifeq ($(REV_NR),)
REV_NR := 0
endif