The $(PERL) variable is used in several places, but configure is
not actually looking for the Perl interpreter path, so it will
always end up being empty.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
configure.ac | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configure.ac b/configure.ac
index 43b0ffb..05b9628 100644
--- a/configure.ac
+++ b/configure.ac
@@ -71,6 +71,8 @@ AC_SUBST([LIBVIRT_GLIB_VERSION_NUMBER])
AC_PROG_CC
AM_PROG_CC_C_O
+AC_PATH_PROG([PERL], [perl])
+
LT_INIT([shared disable-static win32-dll])
dnl AC_CONFIG_LIBOBJ_DIR([src])
--
2.13.5