From 783797a321e7cdf2a6dd3d137ffae8d5725c78d5 Mon Sep 17 00:00:00 2001
From: Matthias Schiffer <mschiffer@universe-factory.net>
Date: Wed, 13 Feb 2013 04:56:03 +0100
Subject: [PATCH] Fix parallel build of images target

---
 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 380017eea..4f63ea523 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,8 @@ prepare:
 $(prepared_stamp):
 	$(MAKE) prepare
 
-images: $(patsubst %,image/%,$(PROFILES))
+images:
+	for profile in $(PROFILES); do $(MAKE) image/$$profile; done
 
 clean:
 	rm -rf $(GLUON_BUILDDIR)
-- 
GitLab