diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-08 09:08:38 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-08 09:08:38 +0000 |
commit | b7d92815a6aaefcf2aa6240346445530473e9c1e (patch) | |
tree | 66a9a28ea0c69b059939becc0f335bc8ec1d5437 /openwrt/rules.mk | |
parent | 322b84237cee9e9adb88d32af8f20f384066866e (diff) | |
download | mtk-20170518-b7d92815a6aaefcf2aa6240346445530473e9c1e.zip mtk-20170518-b7d92815a6aaefcf2aa6240346445530473e9c1e.tar.gz mtk-20170518-b7d92815a6aaefcf2aa6240346445530473e9c1e.tar.bz2 |
add some fixes for parallel build (does not work with -j4 yet, but it gets most packages compiled now)
SVN-Revision: 577
Diffstat (limited to 'openwrt/rules.mk')
-rw-r--r-- | openwrt/rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/rules.mk b/openwrt/rules.mk index d403260..b8ed526 100644 --- a/openwrt/rules.mk +++ b/openwrt/rules.mk @@ -1,6 +1,6 @@ include $(TOPDIR)/.config MAKE1=make -MAKE=make -j$(BR2_JLEVEL) +MAKEFLAGS=-j$(BR2_JLEVEL) # Strip off the annoying quoting ARCH:=$(strip $(subst ",, $(BR2_ARCH))) |