From 266e10a719a396a3a522e4b0ce4271a372e4f6f1 Mon Sep 17 00:00:00 2001 From: Oyvind Albrigtsen Date: Fri, 13 Jul 2018 08:59:45 +0200 Subject: [PATCH 1/3] configure: add Python path detection --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index 90ed2453..bdf057d3 100644 --- a/configure.ac +++ b/configure.ac @@ -501,6 +501,12 @@ AC_SUBST(PING) AC_SUBST(RM) AC_SUBST(TEST) +AM_PATH_PYTHON +if test -z "$PYTHON"; then + echo "*** Essential program python not found" 1>&2 + exit 1 +fi + AC_PATH_PROGS(ROUTE, route) AC_DEFINE_UNQUOTED(ROUTE, "$ROUTE", path to route command) -- 2.17.1