From: Alexandre Montplaisir Date: Thu, 12 Jan 2012 22:50:35 +0000 (-0500) Subject: Add libdir and bindir outputs to configure X-Git-Tag: v2.0-pre17~19 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=5fb528f1fdb74ddc70706a1c786efa2debe7bf16;hp=994dd8a4dd68257854a1b00f875e9b1608375749 Add libdir and bindir outputs to configure Signed-off-by: Alexandre Montplaisir Signed-off-by: David Goulet --- diff --git a/configure.ac b/configure.ac index c7941a86e..716e97865 100644 --- a/configure.ac +++ b/configure.ac @@ -183,6 +183,13 @@ AS_IF([test "x$consumerd_only" = "xyes"],[ AS_ECHO("All binaries will be built.") ]) +# Print the bindir and libdir this `make install' will install into. +AS_ECHO() +AS_ECHO_N("Binaries will be installed in: ") +AS_ECHO("`eval eval echo $bindir`") +AS_ECHO_N("Libraries will be installed in: ") +AS_ECHO("`eval eval echo $libdir`") + # If we build the sessiond, print the paths it will use AS_IF([test "x$consumerd_only" = "xno"],[ AS_ECHO()