From fb32697171632ba544d3d254430a7ecf7dfaddea Mon Sep 17 00:00:00 2001 From: Victor LABORIE Date: Thu, 21 Mar 2019 16:03:56 +0100 Subject: [PATCH] Do not build in parallel --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7dded1a..0af083a 100755 --- a/Makefile +++ b/Makefile @@ -3,13 +3,13 @@ .PHONY: evolinux packmail clean evolinux: - ./scripts/make_template evolinux | PACKER_CACHE_DIR='build/packer' packer build - + ./scripts/make_template evolinux | PACKER_CACHE_DIR='build/packer' packer build -parallel=false - packmail: - ./scripts/make_template packmail | PACKER_CACHE_DIR='build/packer' packer build - + ./scripts/make_template packmail | PACKER_CACHE_DIR='build/packer' packer build -parallel=false - packweb: - ./scripts/make_template packweb | PACKER_CACHE_DIR='build/packer' packer build - + ./scripts/make_template packweb | PACKER_CACHE_DIR='build/packer' packer build -parallel=false - clean: rm -rf build/*