From 7cd473fad54a4d3585baf1784412e0483ae88d30 Mon Sep 17 00:00:00 2001 From: Frank Celler Date: Sun, 19 Feb 2012 23:04:56 +0100 Subject: [PATCH] avoid parallel builds --- Makefile.all-in-one | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile.all-in-one b/Makefile.all-in-one index 28847c99ad..a4b4dc1263 100644 --- a/Makefile.all-in-one +++ b/Makefile.all-in-one @@ -51,9 +51,11 @@ if ENABLE_32BIT V8_BUILD_VERSION=ia32 endif -BUILT_SOURCES += $(V8_LIBS) +BUILT_SOURCES += @V8_LIBS@ -$(V8_LIBS): +@V8_LIBS@: .v8-build + +.v8-build: @echo @echo "--------------------------------------------------------------------------------" @echo "BUILDING V8" @@ -67,6 +69,8 @@ else cd @top_srcdir@/3rdParty/V8 && make library=static snapshot=off $(V8_BUILD_VERSION).release endif + touch .v8-build + @echo @echo "--------------------------------------------------------------------------------" @echo "BUILD V8 FINISHED"