From 0dfb42caae93e37f31a2e0c600e321cd18cb8bbe Mon Sep 17 00:00:00 2001 From: Josip Deanovic Date: Sat, 20 Jun 2015 09:14:45 +0200 Subject: [PATCH] configure: Fix output of libdir directory in summary This patch fixes the output status of the configure script which currently gives output such as this: Window Maker was configured as follows: Installation path prefix : /usr/local/windowmaker-0.95.7.next Installation path for binaries : /usr/local/windowmaker-0.95.7.next/bin Installation path for libraries : ${exec_prefix}/lib Installation path for WPrefs.app : /usr/local/windowmaker-0.95.7.next ... --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2b011088..589c7c9a 100644 --- a/configure.ac +++ b/configure.ac @@ -281,6 +281,8 @@ test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' _bindir=`eval echo $bindir` _bindir=`eval echo $_bindir` +_libdir=`eval echo $libdir` +_libdir=`eval echo $_libdir` lib_search_path='-L${libdir}' @@ -937,7 +939,7 @@ echo "Window Maker was configured as follows:" echo echo "Installation path prefix : $prefix" echo "Installation path for binaries : $_bindir" -echo "Installation path for libraries : $libdir" +echo "Installation path for libraries : $_libdir" echo "Installation path for WPrefs.app : $wprefs_base_dir" | sed -e 's|\${prefix}|'"$prefix|" echo "Supported core features: :$supported_core" echo "Supported X extensions: :$supported_xext"