commit 62d4308a25987dd3c5538578ffd38d088eac2596
Author: Bill Allombert <Bill.Allombert@math.u-bordeaux1.fr>
Date:   Mon Sep 5 14:28:16 2016 +0200

    perl: add explicit "." in @INC
    
    perl 5.26 will remove "." from @INC

Index: pari-2.7.6/src/desc/doc_make
===================================================================
--- pari-2.7.6.orig/src/desc/doc_make
+++ pari-2.7.6/src/desc/doc_make
@@ -1,4 +1,5 @@
 #!/usr/bin/perl
+BEGIN { @INC=(".",@INC); }
 use warnings;
 use strict;
 use PARI::822;
Index: pari-2.7.6/src/desc/gen_proto
===================================================================
--- pari-2.7.6.orig/src/desc/gen_proto
+++ pari-2.7.6/src/desc/gen_proto
@@ -1,4 +1,5 @@
 #!/usr/bin/perl -w
+BEGIN { @INC=(".",@INC); }
 use PARI::822;
 
 $class=$ARGV[0];
Index: pari-2.7.6/src/desc/merge_822
===================================================================
--- pari-2.7.6.orig/src/desc/merge_822
+++ pari-2.7.6/src/desc/merge_822
@@ -1,4 +1,5 @@
 #!/usr/bin/perl -w
+BEGIN { @INC=(".",@INC); }
 use PARI::822;
 
 open(IN, $ARGV[0]) || die "cannot find $ARGV[0]";
