diff options
author | EuAndreh <eu@euandre.org> | 2024-05-02 18:40:22 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-05-02 18:40:22 -0300 |
commit | cde065157392fa0048e205bb713f3d8c56c8e673 (patch) | |
tree | cbf3a7f84d2f418969f24687aaa2214cdc8a3811 /etc | |
parent | bin/gc: tmpdir: Only delete files and directories for now (diff) | |
download | dotfiles-cde065157392fa0048e205bb713f3d8c56c8e673.tar.gz dotfiles-cde065157392fa0048e205bb713f3d8c56c8e673.tar.xz |
etc/sh/rc: Split exporting $N and $MAKEFLAGS
Diffstat (limited to 'etc')
-rw-r--r-- | etc/sh/rc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -114,7 +114,8 @@ export BORG_REMOTE_PATH='borg1' NPROC="$(nproc)" export NPROC GUILE_EFFECTIVE_VERSION="$(guile -c '(display (effective-version))')" -export MAKEFLAGS="-j $(($(nproc) * 2 + 1))" +export N="$(($(nproc) * 2 + 1))" +export MAKEFLAGS="-j $N" export GOPATH="$SRC/go" export VGFLAGS=' --show-error-list=yes |