Wookey wrote:
> --- Debian/Debhelper/Dh_Lib.pm (revision 7813)
> +++ Debian/Debhelper/Dh_Lib.pm (working copy)
> @@ -617,6 +617,10 @@
> next if /^#/ || /^$/;
> }
> my @line;
> + # Only expand ${...} environment vars in v8
> + if (! compat(7)) {
> + s#\$\{([^\}]+)\}#$ENV{$1}#g;
> + }To enable this for any debhelper compatability level, I would need some level of assurance that it does not break any existing packages that use that compatability level. Otherwise, I would have to make this a v9 thing. -- see shy jo
signature.asc
Description: Digital signature

