(svn r13901) -Fix: make sure REV_NR isn't empty, rev.cpp would fail to compile
authorsmatz
Thu, 31 Jul 2008 19:19:29 +0000
changeset 9765 509c47361e6e
parent 9764 9b21f847d91c
child 9766 dfded2c32238
(svn r13901) -Fix: make sure REV_NR isn't empty, rev.cpp would fail to compile
Makefile.src.in
--- a/Makefile.src.in	Thu Jul 31 17:45:52 2008 +0000
+++ b/Makefile.src.in	Thu Jul 31 19:19:29 2008 +0000
@@ -143,9 +143,11 @@
 endif
 endif
 
-# Make sure we have something in REV
+# Make sure we have something in REV and REV_NR
 ifeq ($(REV),)
 REV := norev000
+endif
+ifeq ($(REV_NR),)
 REV_NR := 0
 endif