summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-08-06 22:12:45 +0000
committertron <tron@openttd.org>2005-08-06 22:12:45 +0000
commitdd03e018b5d2d9a23e70c919563e1afcc546f033 (patch)
treee79ab1ce574133f5deffc6fbea27acdf115cc442 /Makefile
parentbb3ab916b3df6affad54417f99d6a73c85b62b6f (diff)
downloadopenttd-dd03e018b5d2d9a23e70c919563e1afcc546f033.tar.xz
(svn r2826) Remove another write-only variable, thanks glx
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 4195f665a..0f9a85fc1 100644
--- a/Makefile
+++ b/Makefile
@@ -246,21 +246,10 @@ ENDIAN_CHECK=endian_check$(EXE)
STRGEN=strgen/strgen$(EXE)
OSXAPP="OpenTTD.app"
-# What revision are we compiling, if we have an idea?
-REV_NUMBER := $(shell if test -d .svn; then svnversion . | tr -dc 0-9; fi)
-
ifdef RELEASE
REV:=$(RELEASE)
else
REV := $(shell if test -d .svn; then svnversion . | awk '{ print "r"$$0 }'; fi)
-tmp_test:=$(shell echo "$(REV)" | grep "M" )
-ifdef tmp_test
-REV_NUMBER:=1
-endif
-endif
-
-ifndef REV_NUMBER
-REV_NUMBER:=0
endif
# MorphOS needs builddate
@@ -929,7 +918,6 @@ endif
rev.c: FORCE
@# setting the revision number in a place, there the binary can read it
@echo 'const char _openttd_revision[] = "$(REV)";' >>rev.c.new
- @echo 'const int _revision_number = $(REV_NUMBER);' >>rev.c.new
@# some additions for MorphOS versions tag
@echo '#ifdef __MORPHOS__' >>rev.c.new
@echo 'const char morphos_versions_tag[] = "\\0$$VER: OpenTTD $(REV) ('${BUILDDATE}') © OpenTTD Team [MorphOS, PowerPC]";' >>rev.c.new