aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJordi Vilalta Prat2009-03-19 18:39:47 +0000
committerJordi Vilalta Prat2009-03-19 18:39:47 +0000
commit2292dc28b06e57d83685a29f0749f38d698b542e (patch)
tree6bc966a929b6c304e8ebbd1f89cd0550aa32519a /Makefile
parent38e295773986ef16e4c4a65b47375849e653eac4 (diff)
downloadscummvm-rg350-2292dc28b06e57d83685a29f0749f38d698b542e.tar.gz
scummvm-rg350-2292dc28b06e57d83685a29f0749f38d698b542e.tar.bz2
scummvm-rg350-2292dc28b06e57d83685a29f0749f38d698b542e.zip
Try to use the working copy revision if it's available
svn-id: r39528
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 54f6ea4ed3..2395511ee3 100644
--- a/Makefile
+++ b/Makefile
@@ -30,10 +30,6 @@ CXXFLAGS+= -Wshadow -Wimplicit -Wnon-virtual-dtor -Wwrite-strings
# Disable RTTI and exceptions, and enabled checking of pointers returned by "new"
CXXFLAGS+= -fno-rtti -fno-exceptions -fcheck-new
-ifneq "$(SCUMMVM_SVN_REVISION)" ""
-CXXFLAGS+= -DSCUMMVM_SVN_REVISION=\"$(SCUMMVM_SVN_REVISION)\"
-endif
-
# There is a nice extra warning that flags variables that are potentially
# used before being initialized. Very handy to catch a certain kind of
# bugs. Unfortunately, it only works when optimizations are turned on,