pkgsrc/devel/autogen/patches/patch-autoopts_mk-tpl-config.sh
wiz a5619b17c8 Update autogen to 5.18.10.
Switch from guile (1.8) to guile20.

Clean up some pkglint.

New in 5.18.10 - May 2016

* NUL terminate CGI definitions text

New in 5.18.9 April 2016

* When parsing CGI, do not allow spaces to be lost
* In producing usage text, check more rigorously that
  option "values" are really not flag characters.

New in 5.18.8 March 2016

* Ensure testing vars start as unset for testing
* happy new year & de-uglifications

New in 5.18.7 December 2015

* Guile 1.6 support was removed
* bootstrapping was made idempotent
* add --enable-static-autogen config option
* add (max-file-time) scheme function (max source file time)
* Allow MAN_PAGE_DATE to override using the date program in
  man page templates
* Enable byte-for-byte build reproducibility
2016-07-16 20:00:14 +00:00

15 lines
452 B
Bash

$NetBSD: patch-autoopts_mk-tpl-config.sh,v 1.1 2016/07/16 20:00:14 wiz Exp $
Allow passing in perl path, to avoid reference to tools/ dir.
--- autoopts/mk-tpl-config.sh.orig 2015-08-08 23:12:01.000000000 +0000
+++ autoopts/mk-tpl-config.sh
@@ -98,7 +98,7 @@ fix_scripts() {
st=`sed 1q $f`
case "$st" in
- *perl ) echo '#!' `which perl`
+ *perl ) echo '#!' ${PERL5}
sed 1d $f
;;