diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-08-16 16:59:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-08-16 16:59:47 +0000 |
commit | a3a37d0bb1e9e66c12aa68d0c17dee48a4f7f29e (patch) | |
tree | 55e7cb676b6270c01af8c7fc05dc89c545a74109 /rules.mk | |
parent | a15a10c85adbfe2a4d5ce0985cbe6ca9cc28f9b7 (diff) | |
download | upstream-a3a37d0bb1e9e66c12aa68d0c17dee48a4f7f29e.tar.gz upstream-a3a37d0bb1e9e66c12aa68d0c17dee48a4f7f29e.tar.bz2 upstream-a3a37d0bb1e9e66c12aa68d0c17dee48a4f7f29e.zip |
rework parallel building to get rid of some warnings and add back support for parallelizing the kernel build fixes #3882
SVN-Revision: 12322
Diffstat (limited to 'rules.mk')
-rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ merge=$(subst $(space),,$(1)) confvar=$(call merge,$(foreach v,$(1),$(if $($(v)),y,n))) strip_last=$(patsubst %.$(lastword $(subst .,$(space),$(1))),%,$(1)) -_SINGLE=MAKEFLAGS=$(space) +_SINGLE=export MAKEFLAGS=$(space); ARCH:=$(call qstrip,$(shell echo $(CONFIG_ARCH) | sed -e 's/i[3-9]86/i386/')) BOARD:=$(call qstrip,$(CONFIG_TARGET_BOARD)) TARGET_OPTIMIZATION:=$(call qstrip,$(CONFIG_TARGET_OPTIMIZATION)) |