Skip to content

Commit 3a4544b

Browse files
authored
Add CXXFLAGS to configure output (#1305)
Printing the CXXFLAGS might help people notice when they are not including all parameters on one line. Printing of CPPFLAGS was added in cd4acb2.
1 parent ac18b02 commit 3a4544b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

configure

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -666,11 +666,12 @@ else
666666
printf " ${OK} Encryption: Disabled.\n"
667667
fi
668668

669-
printf " ${OK} CPPFLAGS: $CPPFLAGS\n"
670-
671669
LDFLAGS="-pthread $LDFLAGS"
672670
CPPFLAGS="$CPUFLAGS $CPPFLAGS"
673671

672+
printf " ${OK} CPPFLAGS: $CPPFLAGS\n"
673+
printf " ${OK} CXXFLAGS: $CXXFLAGS\n"
674+
674675
printf "${SECTION} Detecting init system.\n"
675676
if [ "${NO_INIT}" ]; then
676677
printf " ${OK} No init system chosen.\n"

0 commit comments

Comments
 (0)