mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-19 15:25:39 +00:00
(svn r2826) Remove another write-only variable, thanks glx
This commit is contained in:
parent
01f9cec6df
commit
080c62526d
12
Makefile
12
Makefile
@ -246,21 +246,10 @@ ENDIAN_CHECK=endian_check$(EXE)
|
|||||||
STRGEN=strgen/strgen$(EXE)
|
STRGEN=strgen/strgen$(EXE)
|
||||||
OSXAPP="OpenTTD.app"
|
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
|
ifdef RELEASE
|
||||||
REV:=$(RELEASE)
|
REV:=$(RELEASE)
|
||||||
else
|
else
|
||||||
REV := $(shell if test -d .svn; then svnversion . | awk '{ print "r"$$0 }'; fi)
|
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
|
endif
|
||||||
|
|
||||||
# MorphOS needs builddate
|
# MorphOS needs builddate
|
||||||
@ -929,7 +918,6 @@ endif
|
|||||||
rev.c: FORCE
|
rev.c: FORCE
|
||||||
@# setting the revision number in a place, there the binary can read it
|
@# setting the revision number in a place, there the binary can read it
|
||||||
@echo 'const char _openttd_revision[] = "$(REV)";' >>rev.c.new
|
@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
|
@# some additions for MorphOS versions tag
|
||||||
@echo '#ifdef __MORPHOS__' >>rev.c.new
|
@echo '#ifdef __MORPHOS__' >>rev.c.new
|
||||||
@echo 'const char morphos_versions_tag[] = "\\0$$VER: OpenTTD $(REV) ('${BUILDDATE}') © OpenTTD Team [MorphOS, PowerPC]";' >>rev.c.new
|
@echo 'const char morphos_versions_tag[] = "\\0$$VER: OpenTTD $(REV) ('${BUILDDATE}') © OpenTTD Team [MorphOS, PowerPC]";' >>rev.c.new
|
||||||
|
Loading…
Reference in New Issue
Block a user