configure: output more compile settings

Add information on CPPFLAGS, LDFLAGS and LIBS to the end of the
configure output. This is very helpful in tracing issues when
adjusting the configure file and also will allow us to more
easily replicate any issues discovered due to a users build
environment.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Allan McRae 2011-07-17 09:12:18 +10:00 committed by Dan McGee
parent 36db8c5047
commit f0e34be990

View file

@ -398,9 +398,13 @@ ${PACKAGE_NAME}:
localstatedir : $(eval echo ${localstatedir}) localstatedir : $(eval echo ${localstatedir})
database dir : $(eval echo ${localstatedir})/lib/pacman/ database dir : $(eval echo ${localstatedir})/lib/pacman/
cache dir : $(eval echo ${localstatedir})/cache/pacman/pkg/ cache dir : $(eval echo ${localstatedir})/cache/pacman/pkg/
compiler : ${CC} compiler : ${CC}
preprocessor flags : ${CPPFLAGS}
compiler flags : ${CFLAGS} compiler flags : ${CFLAGS}
defines : ${DEFS} defines : ${DEFS}
library flags : ${LIBS}
linker flags : ${LDFLAGS}
Architecture : ${CARCH} Architecture : ${CARCH}
Architecture flags : ${CARCHFLAGS} Architecture flags : ${CARCHFLAGS}