summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann E. MORIN2010-09-28 23:50:58 +0200
committerPeter Korsgaard2010-09-30 14:37:01 +0200
commitd487168c711388efbe8185e94e2690bdf7cd5b4a (patch)
treeebb496e6f060fb8b80330264c881d3dec19840fa /Makefile
parentcvs: convert to autotargets (diff)
downloadbuildroot-d487168c711388efbe8185e94e2690bdf7cd5b4a.tar.gz
buildroot-d487168c711388efbe8185e94e2690bdf7cd5b4a.tar.xz
buildroot-d487168c711388efbe8185e94e2690bdf7cd5b4a.zip
Makefile: Force make to run serially in the top-level Makefile
The top-level Makefile can be executed in parallel, as it causes problems. We can force make to be not parallel. It's been reported many times, and recent discussions on IRC with kos_tom, and user nick-named knee, led to this patch. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index aab346e94..9c2e6af1a 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,9 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
+# This top-level Makefile can *not* be executed in parallel
+.NOTPARALLEL:
+
#--------------------------------------------------------------
# Just run 'make menuconfig', configure stuff, then run 'make'.
# You shouldn't need to mess with anything beyond this point...