# HG changeset patch # User smatz # Date 1217531969 0 # Node ID 509c47361e6ebd9ce92c416c4a3626527963cff5 # Parent 9b21f847d91c93133402745da815add2bcf75aa8 (svn r13901) -Fix: make sure REV_NR isn't empty, rev.cpp would fail to compile diff -r 9b21f847d91c -r 509c47361e6e 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