From 5e26495b8801e347edf70a567d36b0423542c552 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Mon, 11 Jan 2016 09:15:27 +0100 Subject: [PATCH] perl: remove quotes from $PERL -V::ccflags: output --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7a1a6ce..3e8d325 100644 --- a/configure.ac +++ b/configure.ac @@ -531,7 +531,7 @@ AC_ARG_ENABLE(perl, [ --disable-perl disable the Perl binding],, if test "X$PERL" != "X"; then PERLINSTALLSITEARCH=`$PERL -MConfig -e 'print $Config{installsitearch};'` PERLMAN3DIR=`$PERL -MConfig -e 'print $Config{man3dir};'` - PERL_CFLAGS=$($PERL -V::ccflags:) + PERL_CFLAGS=$($PERL -V::ccflags: | tr -d "'") else PERLINSTALLSITEARCH=none PERLMAN3DIR=none -- 2.7.0.rc3