diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-08-19 18:29:07 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-08-19 18:29:07 -0500 |
commit | d64bbd6bf8d41604e3f14f911f2169f4295e4d99 (patch) | |
tree | d937d231126f8f7edea0734be6c2ce8f2f4e9347 /animations | |
parent | 3c880648fb99b0f7d276dd2ef1eaf99127a85c46 (diff) |
detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly set
Diffstat (limited to 'animations')
-rwxr-xr-x | animations/prj/makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/animations/prj/makefile.mk b/animations/prj/makefile.mk index bcb4970389b5..95b2a0f2f1e5 100755 --- a/animations/prj/makefile.mk +++ b/animations/prj/makefile.mk @@ -37,4 +37,4 @@ VERBOSEFLAG := -s .ENDIF all: - cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog + cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(GMAKE_MODULE_PARALLELISM) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog |