Update to the latest stable release with the new API versions for binaries. The temporary patching of shebangs is no longer necessary since the whitespace check has been changed to a warning. Part of a patch was upstreamed and therefore removed. Manually adjusted patch: - 000-relocatable.patch - 101-do-not-require-files.patch All other patches are automatically refreshed. Link: https://lists.gnu.org/archive/html/autotools-announce/2025-05/msg00001.html Signed-off-by: Michael Pratt <mcpratt@pm.me> Link: https://github.com/openwrt/openwrt/pull/16522 Signed-off-by: Robert Marko <robimarko@gmail.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			626 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			626 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
--- a/bin/automake.in
 | 
						|
+++ b/bin/automake.in
 | 
						|
@@ -5700,7 +5700,7 @@ sub check_gnu_standards ()
 | 
						|
           # otherwise require non-.md.
 | 
						|
           my $required
 | 
						|
            = (! -f $file && -f "$file.md") ? "$file.md" : $file;
 | 
						|
-          require_file ("$am_file.am", GNU, $required);
 | 
						|
+          require_file ("$am_file.am", GNITS, $required);
 | 
						|
         }
 | 
						|
 
 | 
						|
       # Accept one of these three licenses; default to COPYING.
 | 
						|
@@ -5714,7 +5714,7 @@ sub check_gnu_standards ()
 | 
						|
 	      last;
 | 
						|
 	    }
 | 
						|
 	}
 | 
						|
-      require_file ("$am_file.am", GNU, 'COPYING')
 | 
						|
+      require_file ("$am_file.am", GNITS, 'COPYING')
 | 
						|
 	unless $license;
 | 
						|
     }
 | 
						|
 
 |