From 3cabbb55a1ea5afe6ffdbeb6c0de750b1c3e0c11 Mon Sep 17 00:00:00 2001 From: ellson Date: Tue, 18 Oct 2005 21:12:14 +0000 Subject: [PATCH] bug#801 - use correct PERL in configure - patch from: Danny Sadinoff --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 28920bd07..118870025 100644 --- a/configure.ac +++ b/configure.ac @@ -441,7 +441,7 @@ AC_ARG_ENABLE(perl, if test "x$enable_perl" != "xno"; then AC_CHECK_PROG(PERL,perl,perl) if test "x$PERL" != "x"; then - PERL_ARCHLIB=`perl -e 'use Config; print $Config{archlib};'` + PERL_ARCHLIB=`$PERL -e 'use Config; print $Config{archlib};'` PERL_INCLUDES=-I$PERL_ARCHLIB/CORE PERL_LIBS="-L$PERL_ARCHLIB/CORE -lperl" fi -- 2.40.0