diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-01-06 00:28:51 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-01-10 12:10:20 +0100 |
commit | 1e1d735e5213dac7c582304f58da674714f6aade (patch) | |
tree | cdf07d9ae1555b8394041935debf44b71d8abdf3 /include/image.mk | |
parent | 029b36d9b558423bb25f453dc82023990afbd71d (diff) | |
download | upstream-1e1d735e5213dac7c582304f58da674714f6aade.tar.gz upstream-1e1d735e5213dac7c582304f58da674714f6aade.tar.bz2 upstream-1e1d735e5213dac7c582304f58da674714f6aade.zip |
build: remove obsolete parallel build related options
Always use the main make jobserver, which has been the default for ages
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'include/image.mk')
-rw-r--r-- | include/image.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk index ed968513a1..3daee35c48 100644 --- a/include/image.mk +++ b/include/image.mk @@ -197,7 +197,7 @@ define Image/mkfs/squashfs $(STAGING_DIR_HOST)/bin/mksquashfs4 $(call mkfs_target_dir,$(1)) $@ \ -nopad -noappend -root-owned \ -comp $(SQUASHFSCOMP) $(SQUASHFSOPT) \ - -processors $(if $(CONFIG_PKG_BUILD_JOBS),$(CONFIG_PKG_BUILD_JOBS),1) \ + -processors 1 \ $(if $(SOURCE_DATE_EPOCH),-fixed-time $(SOURCE_DATE_EPOCH)) endef |