diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-27 20:44:22 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2012-09-27 20:44:22 +0400 |
commit | 590f9485a3e0267c6708792d6bda79247612621a (patch) | |
tree | 917a47cbef90e3cab101f017e5b7bc278dcc292e /rules | |
parent | 776e43be2f017bc73483bbde47a365b7f128b956 (diff) | |
download | cibs-590f9485a3e0267c6708792d6bda79247612621a.tar.gz |
Respect $(make-jobs) = number
Diffstat (limited to 'rules')
-rw-r--r-- | rules/autotools.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/autotools.mk b/rules/autotools.mk index 58eaed9..ab94562 100644 --- a/rules/autotools.mk +++ b/rules/autotools.mk @@ -53,7 +53,7 @@ configure-%-stamp: pre-configure-stamp touch $@ build-%-stamp: configure-%-stamp - cd "$(builddir)" && $(MAKE) + cd "$(builddir)" && $(MAKE) $(make-jobs:%=-j%) touch $@ install-%-stamp: build-%-stamp |