Skip to content

Commit b5e79ef

Browse files
committed
patch 8.0.1111: syntax error in configure when using Perl
Problem: Syntax error in configure when using Perl. Solution: Add missing quote
1 parent e8ff56b commit b5e79ef

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/auto/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5720,7 +5720,7 @@ $as_echo "OK" >&6; }
57205720
perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
57215721
-e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[^ ]*//' \
57225722
-e 's/-fdebug-prefix-map[^ ]*//g' \
5723-
-e 's/\(-Wp,\)\?-D_FORTIFY_SOURCE=.//g`
5723+
-e 's/\(-Wp,\)\?-D_FORTIFY_SOURCE=.//g'`
57245724
perllibs=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed -e 'ldopts' | \
57255725
sed -e '/Warning/d' -e '/Note (probably harmless)/d' \
57265726
-e 's/-bE:perl.exp//' -e 's/-lc //'`

src/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ if test "$enable_perlinterp" = "yes" -o "$enable_perlinterp" = "dynamic"; then
10091009
perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
10101010
-e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[[^ ]]*//' \
10111011
-e 's/-fdebug-prefix-map[[^ ]]*//g' \
1012-
-e 's/\(-Wp,\)\?-D_FORTIFY_SOURCE=.//g`
1012+
-e 's/\(-Wp,\)\?-D_FORTIFY_SOURCE=.//g'`
10131013
dnl Remove "-lc", it breaks on FreeBSD when using "-pthread".
10141014
perllibs=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed -e 'ldopts' | \
10151015
sed -e '/Warning/d' -e '/Note (probably harmless)/d' \

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
1111,
772774
/**/
773775
1110,
774776
/**/

0 commit comments

Comments
 (0)