mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	kbuild: Fix reading of .config in link-vmlinux.sh
The shell '.' command is not required to search the current directory as a fallback and in fact newer versions of bash in sh-mode do not do this. Force reading the file from the current directory if $KCONFIG_CONFIG contains no '/'. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
		
							parent
							
								
									f893bfb615
								
							
						
					
					
						commit
						423a8155fa
					
				
					 1 changed files with 8 additions and 1 deletions
				
			
		| 
						 | 
					@ -132,7 +132,14 @@ if [ "$1" = "clean" ]; then
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# We need access to CONFIG_ symbols
 | 
					# We need access to CONFIG_ symbols
 | 
				
			||||||
. ${KCONFIG_CONFIG}
 | 
					case "${KCONFIG_CONFIG}" in
 | 
				
			||||||
 | 
					*/*)
 | 
				
			||||||
 | 
						. "${KCONFIG_CONFIG}"
 | 
				
			||||||
 | 
						;;
 | 
				
			||||||
 | 
					*)
 | 
				
			||||||
 | 
						# Force using a file from the current directory
 | 
				
			||||||
 | 
						. "./${KCONFIG_CONFIG}"
 | 
				
			||||||
 | 
					esac
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#link vmlinux.o
 | 
					#link vmlinux.o
 | 
				
			||||||
info LD vmlinux.o
 | 
					info LD vmlinux.o
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue