From 3c065b7f619f281f89fb840527fe1811496840c2 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Mon, 6 Mar 2023 09:40:52 +0100 Subject: [PATCH] Fix issue with new make --- zsh/exports.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/exports.zsh b/zsh/exports.zsh index 60569e4..415d900 100644 --- a/zsh/exports.zsh +++ b/zsh/exports.zsh @@ -7,7 +7,7 @@ else fi # Parallel conpilation with make -export MAKEFLAGS="+j`nproc`" +export MAKEFLAGS="-j`nproc`" # I want clang as default compiler if it exists command -v clang > /dev/null 2>&1