From 7e42483986631ec36a0e798f6ad1ef0145837ff0 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Sun, 29 Nov 2020 16:39:28 -0800 Subject: [PATCH] Fix configure script to not clobber CFLAGS. Signed-off-by: Tim 'mithro' Ansell --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 1cb5571..9f55e2a 100755 --- a/configure +++ b/configure @@ -4,6 +4,6 @@ # all of its config scripts in a different directory than the configure # script itself. -export CFLAGS="-g" +export CFLAGS="$CFLAGS -g" cd scripts exec ./configure "$@"