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 /unoxml | |
parent | 3c880648fb99b0f7d276dd2ef1eaf99127a85c46 (diff) |
detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly set
Diffstat (limited to 'unoxml')
-rw-r--r-- | unoxml/prj/makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/prj/makefile.mk b/unoxml/prj/makefile.mk index 5ebed8a45c4a..6d474ca27aee 100644 --- a/unoxml/prj/makefile.mk +++ b/unoxml/prj/makefile.mk @@ -37,4 +37,4 @@ VERBOSEFLAG := -s .ENDIF all: - cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) + cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(GMAKE_MODULE_PARALLELISM) $(gb_MAKETARGET) |