mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	Automake releases 1.16.2 to 1.16.5 are major releases, the two before are minor releases. The first patch needed rewriting, some lines moved to be consistent with the same change upstream in other files. This also simplifies the patch. Second patch refreshed. Links to changelogs in order, oldest to newest. Link: https://lists.gnu.org/archive/html/info-gnu/2018-02/msg00008.html Link: https://lists.gnu.org/archive/html/info-gnu/2018-03/msg00002.html Link: https://lists.gnu.org/archive/html/info-gnu/2020-03/msg00009.html Link: https://lists.gnu.org/archive/html/info-gnu/2020-11/msg00005.html Link: https://lists.gnu.org/archive/html/info-gnu/2021-07/msg00013.html Link: https://lists.gnu.org/archive/html/info-gnu/2021-10/msg00000.html Signed-off-by: Michael Pratt <mcpratt@pm.me>
		
			
				
	
	
		
			16 lines
		
	
	
		
			376 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			376 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/bin/aclocal.in
 | |
| +++ b/bin/aclocal.in
 | |
| @@ -371,6 +371,12 @@ sub scan_m4_dirs ($$@)
 | |
|  
 | |
|    foreach my $m4dir (@dirlist)
 | |
|      {
 | |
| +      if (! -d $m4dir)
 | |
| +        {
 | |
| +          msg ('override', "warning: skipping not existing directory `$m4dir'");
 | |
| +          next;
 | |
| +        }
 | |
| +
 | |
|        if (! opendir (DIR, $m4dir))
 | |
|  	{
 | |
|  	  # TODO: maybe avoid complaining only if errno == ENONENT?
 |