diff options
author | EuAndreh <eu@euandre.org> | 2023-10-11 10:39:49 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-10-11 10:39:49 -0300 |
commit | f77f79135cd432fd2a9f7380dee306f11610489b (patch) | |
tree | 0aa764e5c6c4cedbc9867189b4785e9a8b3ba147 | |
parent | etc/nix/configuration.nix: Remove extra packages and unused configuration (diff) | |
download | dotfiles-f77f79135cd432fd2a9f7380dee306f11610489b.tar.gz dotfiles-f77f79135cd432fd2a9f7380dee306f11610489b.tar.xz |
etc/sh/rc: Fix content of $VG_FLAGS
-rw-r--r-- | etc/sh/rc | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -113,12 +113,13 @@ GUILE_EFFECTIVE_VERSION="$(guile -c '(display (effective-version))')" export MAKEFLAGS="-j $NPROC" export GOPATH="$SRC/go" export VG_FLAGS=' ---show-error-list=yes ---show-leak-kinds=all ---leak-check=full ---track-origins=yes ---error-exitcode=1 + --show-error-list=yes + --show-leak-kinds=all + --leak-check=full + --track-origins=yes + --error-exitcode=1 ' +VG_FLAGS="$(echo "$VG_FLAGS" | grep . | tr -d '\t' | tr '\n' ' ')" export CFLAGS='-D_POSIX_C_SOURCE=200809L -std=c99 -Wall -Wextra -Wpedantic -Wconversion -Wfatal-errors -Wshadow -Wformat=2 -Wfloat-equal -Wundef -Wdouble-promotion -fno-common' # -Warith-conversion -Warray-bounds=2 -Wformat-overflow=2 -Wformat-truncation -Wstringop-overflow=2 -Werror -Wpadded export CC=tcc |