perl: remove quotes from $PERL -V::ccflags: output (#9572)

This commit is contained in:
Frédéric Péters 2016-01-11 09:15:27 +01:00
parent 8e78d90d54
commit e0afa0b995
1 changed files with 1 additions and 1 deletions

View File

@ -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