commit 056b694a62a8bd6058376281d7483f51b0017357 from: Thomas Adam date: Thu Aug 24 09:08:18 2023 UTC portable: configure: echo gotd/gitwrapper paths When --enable-gotd is present, and gotd empty path or gitwrapper's git libexec path is set, print those out with the other information at the end of the configure script. "N/A" is set where no value is present. Helpful for debugging. commit - f3b9329b941ea4b6fcc829285d3ff5fd74d47d96 commit + 056b694a62a8bd6058376281d7483f51b0017357 blob - c3e6624e4c9b6ffac08c31bf187917d0dbab7bc5 blob + 24fac9fc2983a5613885c8e2154d8af4ce715c4f --- configure.ac +++ configure.ac @@ -929,21 +929,35 @@ AC_OUTPUT executables="$(eval echo ${exec_prefix}/bin)" helpers="$(eval echo ${libexecdir})" manpages="$(eval echo ${mandir})" +gotdep="$GOTD_EMPTY_PATHC" +gotgwlep="$GITWRAPPER_LIBEXEC_PATHC" if test -z "$enable_gotd"; then enable_gotd="no" + gotdep="N/A" + gotgwlep="N/A" +fi + +if test -z "$gotdep"; then + gotdep="N/A" fi +if test -z "$gotgwlep"; then + gotgwlep="N/A" +fi + echo " Configured got-portable with: Version: $VERSION - Prefix: ${prefix} - Executables: ${executables} - Bison: $YACC - CFlags: $CFLAGS - Gotd: ${enable_gotd} - Helpers: ${helpers} - Man pages: ${manpages} + Prefix: ${prefix} + Executables: ${executables} + Bison: $YACC + CFlags: $CFLAGS + Gotd: ${enable_gotd} + Empty Path: ${gotdep} + Gitwrapper: ${gotgwlep} + Helpers: ${helpers} + Man pages: ${manpages} "