oops, put exports into the setopt file.
This commit is contained in:
parent
c056b52a45
commit
6437cc8f97
|
@ -14,3 +14,9 @@ export GREP_COLOR='1;32'
|
||||||
# language
|
# language
|
||||||
export LC_ALL=en_US.UTF-8
|
export LC_ALL=en_US.UTF-8
|
||||||
export LANGUAGE=en_US.UTF-8
|
export LANGUAGE=en_US.UTF-8
|
||||||
|
|
||||||
|
# Make options
|
||||||
|
if [[ -r /proc/cpuinfo ]]; then
|
||||||
|
export MAKEOPTS=-j$(($(grep -c '^processor' /proc/cpuinfo) + 1))
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,3 @@ setopt AUTO_CD
|
||||||
# Turn off flow control
|
# Turn off flow control
|
||||||
setopt noflowcontrol
|
setopt noflowcontrol
|
||||||
|
|
||||||
# Make options
|
|
||||||
if [[ -r /proc/cpuinfo ]]; then
|
|
||||||
export MAKEOPTS=-j$(($(grep -c '^processor' /proc/cpuinfo) + 1))
|
|
||||||
fi
|
|
||||||
|
|
Loading…
Reference in New Issue