diff options
author | tron <tron@openttd.org> | 2004-11-17 18:22:21 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2004-11-17 18:22:21 +0000 |
commit | d753aeea58066c74e46f176cf7e668c62cfbbfd7 (patch) | |
tree | e613512a1a0106a98a7eba8293b8350304ae37f6 /Makefile | |
parent | 3a7abc2a35fba00e1e59d8ea7fbfb1442e9c20c9 (diff) | |
download | openttd-d753aeea58066c74e46f176cf7e668c62cfbbfd7.tar.xz |
(svn r660) Fix typo introduced in r655
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ 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) +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 |