From 97c7a38a46ed4b9167a6bd16c77c63cc7a884c32 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Mon, 2 Jun 2025 15:15:26 -0300 Subject: etc/sh/rc: Swap $CFLAGS and $CCFLAGS --- etc/sh/rc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'etc') diff --git a/etc/sh/rc b/etc/sh/rc index 8192229..f6052ef 100644 --- a/etc/sh/rc +++ b/etc/sh/rc @@ -136,17 +136,16 @@ export CCFLAGS=' -Wall -Wextra -Wpedantic - -Wconversion -Wshadow -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 CCFLAGS="$CCFLAGS -Wconversion -Wdouble-promotion" export YFLAGS='-Wother' export GOCFLAGS="-I $PREFIX/lib/go -N" export GOLDFLAGS="-L $PREFIX/lib/go" -- cgit v1.2.3