Description: Do not hard-code path of gzip.
 Change the Configure system to use "gzip" as the path to gzip.
 This is necessary to support merged /usr systems.

Author: Bill Allombert <ballombe@debian.org>
Last-Update: 2018-12-01
Index: pari-2.11.1/Configure
===================================================================
--- pari-2.11.1.orig/Configure
+++ pari-2.11.1/Configure
@@ -54,6 +54,10 @@ for file in $_tools_list; do
 done
 if test -z "$zcat" -a -n "$gzip"; then zcat="$gzip -dc"; fi
 
+#Do not hard-code path for those two
+gzip=gzip
+zcat=zcat
+
 ####################### CONFIGURE - ARCHITECTURE ############################
 . ./get_archos # arch, osname
 config_log="$TOP/config-$arch-$osname$$.log"
