From c79efc7181f088bf77addb8b7bd15805dbeb436e Mon Sep 17 00:00:00 2001 From: Dennis Schridde Date: Wed, 27 Dec 2017 17:05:08 +0100 Subject: [PATCH] Rename "nproc" variable to "jobs" Rust names it "jobs", too. Fixes: ad61bf8325774d4858ffb3a8127629b174d27db8 Fixes: df53819082c8c758661fabe4864afa45fce662b6 Signed-Off-By: Dennis Schridde --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2f82f63..ad33485 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ root_dir := $(CURDIR) build_dir := $(root_dir)/build sysroot_dir := $(root_dir)/toolchain target := riscv32-unknown-elf -nproc := -makeflags := $(if $(nproc),-j$(nproc)) +jobs := +makeflags := $(if $(jobs),-j$(jobs)) ccache := $(shell which ccache)