From: ellson Date: Tue, 18 Oct 2005 21:12:14 +0000 (+0000) Subject: bug#801 - use correct PERL in configure - X-Git-Tag: LAST_LIBGRAPH~32^2~7047 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cabbb55a1ea5afe6ffdbeb6c0de750b1c3e0c11;p=graphviz bug#801 - use correct PERL in configure - patch from: Danny Sadinoff --- 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