From: Michael Jeanson Date: Thu, 18 Mar 2021 20:25:34 +0000 (-0400) Subject: fix: use the configured cmake binary X-Git-Tag: v2.13.0-rc1~227 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=d41d33d0b9bce4e0582bfe6d98d412c923755b8b;p=lttng-ust.git fix: use the configured cmake binary Use the configure cmake binary in the examples Makefile instead of a direct call. Change-Id: Idb66642345e551b427e359b9cd58f49aad2a8502 Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/configure.ac b/configure.ac index 89d2c1ea..d46f8f5f 100644 --- a/configure.ac +++ b/configure.ac @@ -74,8 +74,8 @@ AC_PROG_GREP AC_PROG_LN_S AC_PROG_MKDIR_P AC_PROG_MAKE_SET -AC_CHECK_PROG([HAVE_CMAKE], [cmake], ["yes"]) -AM_CONDITIONAL([HAVE_CMAKE], [test "x$HAVE_CMAKE" = "xyes"]) +AC_CHECK_PROG([CMAKE], [cmake]) +AM_CONDITIONAL([HAVE_CMAKE], [test "x$CMAKE" != "x"]) # libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321. AC_ARG_ENABLE([libtool-linkdep-fixup], [ diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index a7f52a04..1dbe9f9d 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am @@ -179,7 +179,7 @@ all-local: AR="$(AR)" \ CC="$(CC)" \ CXX="$(CXX)" \ - cmake \ + $(CMAKE) \ -DCMAKE_INCLUDE_PATH="$(abs_top_srcdir)/include;$(abs_top_builddir)/include" \ -DCMAKE_LIBRARY_PATH="$(abs_top_builddir)/liblttng-ust/.libs" \ -DCMAKE_C_FLAGS="$(AM_CFLAGS) $(CPPFLAGS) $(CFLAGS)" \