diff options
author | Marcus Comstedt | 2010-03-21 10:35:15 +0000 |
---|---|---|
committer | Marcus Comstedt | 2010-03-21 10:35:15 +0000 |
commit | e6619b579299ecefcf9cf6daf0e272cb86136aa4 (patch) | |
tree | fdda8a98d9c70e838ddda26682d496c66c90e937 | |
parent | 487eebf9cf3b210322d8982c07fc65538a45bd23 (diff) | |
download | scummvm-rg350-e6619b579299ecefcf9cf6daf0e272cb86136aa4.tar.gz scummvm-rg350-e6619b579299ecefcf9cf6daf0e272cb86136aa4.tar.bz2 scummvm-rg350-e6619b579299ecefcf9cf6daf0e272cb86136aa4.zip |
Ack, typo!
svn-id: r48352
-rw-r--r-- | backends/platform/dc/dreamcast.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/dc/dreamcast.mk b/backends/platform/dc/dreamcast.mk index 395b26fb1f..5723418b59 100644 --- a/backends/platform/dc/dreamcast.mk +++ b/backends/platform/dc/dreamcast.mk @@ -30,7 +30,7 @@ ip.txt : $(srcdir)/backends/platform/dc/ip.txt.in if [ x"$(VER_EXTRA)" = xsvn ]; then \ if [ -z "$(VER_SVNREV)" ]; then ver="SVN"; else ver="r$(VER_SVNREV)"; fi; \ else ver="V$(VERSION)"; fi; \ - if expr "$ver" : V...... >/dev/null; then \ + if expr "$$ver" : V...... >/dev/null; then \ ver="V$(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)"; fi; \ sed -e 's/[@]VERSION[@]/'"$$ver"/ -e 's/[@]DATE[@]/$(shell date '+%Y%m%d')/' < $< > $@ |