mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-01 00:58:39 +02:00 
			
		
		
		
	kbuild: fix false positive -dirty tag caused by make-kpkg
make-kpkg modifies scripts/package/Makefile and deletes scripts/package/builddeb as part of its build process. Ignore these changes so the tree isn't marked as -dirty, when it is just an artifact of make-kpkg. (make-kpkg clean restores the files to their original state, and these helper scripts won't affect the final compiled kernel in any way.) Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
		
							parent
							
								
									4e7434ff02
								
							
						
					
					
						commit
						b052ce4c84
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -17,7 +17,8 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then | ||||||
| 
 | 
 | ||||||
| 	# Are there uncommitted changes? | 	# Are there uncommitted changes? | ||||||
| 	git update-index --refresh --unmerged > /dev/null | 	git update-index --refresh --unmerged > /dev/null | ||||||
| 	if git diff-index HEAD | read dummy; then | 	if git diff-index --name-only HEAD | grep -v "^scripts/package" \ | ||||||
|  | 	    | read dummy; then | ||||||
| 		printf '%s' -dirty | 		printf '%s' -dirty | ||||||
| 	fi | 	fi | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Theodore Ts'o
						Theodore Ts'o