diff options
author | EuAndreh <eu@euandre.org> | 2025-05-15 06:11:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-15 06:11:19 -0300 |
commit | 8139690177b3fb29183c3dabdd429b9fed788a41 (patch) | |
tree | b064a8805b7984c498360ae61be146c7e1581032 /etc/sh/rc | |
parent | etc/guix/home.scm: Add "fuse" package (diff) | |
download | dotfiles-8139690177b3fb29183c3dabdd429b9fed788a41.tar.gz dotfiles-8139690177b3fb29183c3dabdd429b9fed788a41.tar.xz |
etc/sh/rc: Separate -Wmissing-prototypes to $CCFLAGS
Diffstat (limited to '')
-rw-r--r-- | etc/sh/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -141,12 +141,12 @@ export CCFLAGS=' -Wundef -Wdouble-promotion -Wvla - -Wmissing-prototypes ' CCFLAGS="$(printf '%s\n' "$CCFLAGS" | grep . | tr -d '\t' | tr '\n' ' ')" export LLDFLAGS='' export LDFLAGS="$LLDFLAGS -static" export CFLAGS="$CCFLAGS" +export CCFLAGS="$CCFLAGS -Wmissing-prototypes" export YFLAGS='-Wother' export GOCFLAGS="-I $PREFIX/lib/go -N" export GOLDFLAGS="-L $PREFIX/lib/go" |