oops, put exports into the setopt file.

This commit is contained in:
staticsafe 2012-06-16 14:30:43 -04:00
parent c056b52a45
commit 6437cc8f97
2 changed files with 6 additions and 4 deletions

View File

@ -14,3 +14,9 @@ export GREP_COLOR='1;32'
# language
export LC_ALL=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

View File

@ -15,7 +15,3 @@ setopt AUTO_CD
# Turn off flow control
setopt noflowcontrol
# Make options
if [[ -r /proc/cpuinfo ]]; then
export MAKEOPTS=-j$(($(grep -c '^processor' /proc/cpuinfo) + 1))
fi