# HG changeset patch # User smatz # Date 2008-07-31 19:19:29 # Node ID c3e5347475e9d3758373654c5c50c911361e8d12 # Parent 7294de81e1eb429bd3d9fd59f10c4813986a37ad (svn r13901) -Fix: make sure REV_NR isn't empty, rev.cpp would fail to compile diff --git a/Makefile.src.in b/Makefile.src.in --- a/Makefile.src.in +++ b/Makefile.src.in @@ -143,9 +143,11 @@ endif 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