From 49be36c9a6796c907c1f5c178e9bb34a90a8a2ce Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Tue, 6 May 2014 17:28:13 +0300 Subject: [PATCH] fix previous commit --- bashrc | 2 +- zshrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc b/bashrc index 62bed253..4d5a82d4 100644 --- a/bashrc +++ b/bashrc @@ -267,7 +267,7 @@ export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx if [[ $UNAME != Darwin ]]; then export NPROC=`nproc` else - export NPROC=`sysctl -n hw.cpu` + export NPROC=`sysctl -n hw.ncpu` fi export MAKEFLAGS="-j$NPROC" diff --git a/zshrc b/zshrc index 46e781a7..7d5e65c8 100644 --- a/zshrc +++ b/zshrc @@ -205,7 +205,7 @@ export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx if [[ $UNAME != Darwin ]]; then export NPROC=`nproc` else - export NPROC=`sysctl -n hw.cpu` + export NPROC=`sysctl -n hw.ncpu` fi export MAKEFLAGS="-j$NPROC"