Browse Source

Do not fail if building test/ fails (issues with parallel builds)

Git-Dch: ignore
Michael Vogt 11 years ago
parent
commit
586bdb0c12
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Makefile

+ 2 - 1
Makefile

@@ -21,7 +21,8 @@ all headers library clean veryclean binary program doc manpages docbook test upd
 	$(MAKE) -C dselect $@
 	$(MAKE) -C dselect $@
 	$(MAKE) -C doc $@
 	$(MAKE) -C doc $@
 	$(MAKE) -C po $@
 	$(MAKE) -C po $@
-	$(MAKE) -C test $@
+	# FIXME: -C test has issue swith parallel builds, investigate!
+	-$(MAKE) -C test $@
 
 
 fast:
 fast:
 	$(MAKE) -C vendor all
 	$(MAKE) -C vendor all