Fix in HG dependency rules jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 04 Dec 2012 12:22:42 +0000
branchjv
changeset 17995 783bf23f92a3
parent 17994 d51ebd1d3af0
child 17996 0fd959f71d7c
Fix in HG dependency rules
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Nov 30 17:31:16 2012 +0000
+++ b/ProjectDefinition.st	Tue Dec 04 12:22:42 2012 +0000
@@ -2144,7 +2144,7 @@
 # Enforce recompilation of package definition class if Mercurial working
 # copy state changes. Together with --guessVersion it ensures that package
 # definition class always contains correct binary revision string.
-ifneq (**NOHG**, $(shell hg root 2> /dev/null || echo ''**NOHG**''))
+ifneq (**NOHG**, $(shell hg root 2> /dev/null || echo -n ''**NOHG**''))
 %1.$(OBJ): $(shell hg root)/.hg/dirstate
 endif
 ' bindWith: self name.
@@ -6939,7 +6939,7 @@
 !
 
 version_SVN
-    ^ '$Id:: ProjectDefinition.st 10876 2012-11-30 17:19:23Z vranyj1                                                                $'
+    ^ '$Id:: ProjectDefinition.st 10878 2012-12-04 12:22:42Z vranyj1                                                                $'
 ! !
 
 ProjectDefinition initialize!