You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-devel/automake/files/automake-1.4-libtoolize.patch

18 lines
496 B

Patch from redhat/fedora which made it into upstream.
--- a/automake.in
+++ b/automake.in
@@ -6882,9 +6882,11 @@
$suppress = 1;
# Maybe run libtoolize.
+ @libtoolize_args = ('--automake');
+ push @libtoolize_args, '-c' if $copy_missing;
if ($seen_libtool
&& grep ($_ eq $file, @libtoolize_files)
- && system ('libtoolize', '--automake'))
+ && system ('libtoolize', @libtoolize_args))
{
$message = "installing \`$errfile'";
$suppress = 0;