|
|
@@ -1,6 +1,6 @@
|
|
|
--- a/lib/Automake/Config.in
|
|
|
+++ b/lib/Automake/Config.in
|
|
|
-@@ -34,7 +34,7 @@ our $PACKAGE = '@PACKAGE@';
|
|
|
+@@ -32,7 +32,7 @@ our $PACKAGE = '@PACKAGE@';
|
|
|
our $PACKAGE_BUGREPORT = '@PACKAGE_BUGREPORT@';
|
|
|
our $VERSION = '@VERSION@';
|
|
|
our $RELEASE_YEAR = '@RELEASE_YEAR@';
|
|
|
@@ -11,15 +11,9 @@
|
|
|
# We need at least this version for CLONE support.
|
|
|
--- a/bin/aclocal.in
|
|
|
+++ b/bin/aclocal.in
|
|
|
-@@ -1,4 +1,4 @@
|
|
|
--#!@PERL@
|
|
|
-+#!/usr/bin/env perl
|
|
|
- # aclocal - create aclocal.m4 by scanning configure.ac -*- perl -*-
|
|
|
- # @configure_input@
|
|
|
- # Copyright (C) 1996-2024 Free Software Foundation, Inc.
|
|
|
-@@ -23,9 +23,11 @@ use 5.006;
|
|
|
- use strict;
|
|
|
- use warnings FATAL => 'all';
|
|
|
+@@ -21,9 +21,11 @@
|
|
|
+
|
|
|
+ use 5.006; use strict; use warnings;
|
|
|
|
|
|
+$^W = 1;
|
|
|
+
|
|
|
@@ -30,7 +24,7 @@
|
|
|
unless $ENV{AUTOMAKE_UNINSTALLED};
|
|
|
}
|
|
|
|
|
|
-@@ -65,8 +67,8 @@ $perl_threads = 0;
|
|
|
+@@ -63,8 +65,8 @@ $perl_threads = 0;
|
|
|
# --aclocal-path option/ACLOCAL_PATH environment variable, and reset
|
|
|
# with the '--system-acdir' option.
|
|
|
my @user_includes = ();
|
|
|
@@ -43,15 +37,9 @@
|
|
|
# Whether we should copy M4 file in $user_includes[0].
|
|
|
--- a/bin/automake.in
|
|
|
+++ b/bin/automake.in
|
|
|
-@@ -1,4 +1,4 @@
|
|
|
--#!@PERL@
|
|
|
-+#!/usr/bin/env perl
|
|
|
- # automake - create Makefile.in from Makefile.am -*- perl -*-
|
|
|
- # @configure_input@
|
|
|
- # Copyright (C) 1994-2024 Free Software Foundation, Inc.
|
|
|
-@@ -26,9 +26,11 @@ use 5.006;
|
|
|
- use strict;
|
|
|
- use warnings FATAL => 'all';
|
|
|
+@@ -24,9 +24,11 @@ package Automake;
|
|
|
+
|
|
|
+ use 5.006; use strict; use warnings;
|
|
|
|
|
|
+$^W = 1;
|
|
|
+
|