From d2f5317469e964b36915d9d3b42a14df2ffd8add Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sat, 11 Feb 2023 14:16:08 -0500 Subject: [PATCH] configure: add optional verbose output for flag tests to aid future debugging, this will show stderr from the compiler when --verbose is passed to configure. --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 43985bb4..303c90a1 100755 --- a/configure +++ b/configure @@ -262,6 +262,7 @@ EOF rv=1 echo "no." fi + [ -z "$SILENT" ] && cat _ccflag.err rm -f _ccflag.c _ccflag _ccflag.err return $rv }