forked from mirrors/qmk_userspace
		
	Remove cmp checks from Makefile (#19480)
This commit is contained in:
		
					parent
					
						
							
								b497d58d6d
							
						
					
				
			
			
				commit
				
					
						20ee103399
					
				
			
		
					 2 changed files with 1 additions and 4 deletions
				
			
		
							
								
								
									
										2
									
								
								Makefile
									
										
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
										
									
									
									
								
							| 
						 | 
					@ -395,8 +395,6 @@ endef
 | 
				
			||||||
# Catch everything and parse the command line ourselves.
 | 
					# Catch everything and parse the command line ourselves.
 | 
				
			||||||
.PHONY: %
 | 
					.PHONY: %
 | 
				
			||||||
%:
 | 
					%:
 | 
				
			||||||
	# Check if we have the CMP tool installed
 | 
					 | 
				
			||||||
	cmp $(ROOT_DIR)/Makefile $(ROOT_DIR)/Makefile >/dev/null 2>&1; if [ $$? -gt 0 ]; then printf "$(MSG_NO_CMP)"; exit 1; fi;
 | 
					 | 
				
			||||||
	# Ensure that $(QMK_BIN) works.
 | 
						# Ensure that $(QMK_BIN) works.
 | 
				
			||||||
	if ! $(QMK_BIN) hello 1> /dev/null 2>&1; then printf "$(MSG_PYTHON_MISSING)"; exit 1; fi
 | 
						if ! $(QMK_BIN) hello 1> /dev/null 2>&1; then printf "$(MSG_PYTHON_MISSING)"; exit 1; fi
 | 
				
			||||||
ifdef NOT_REPO
 | 
					ifdef NOT_REPO
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -68,7 +68,6 @@ MSG_NOT_REPO = $(WARN_COLOR)WARNING:$(NO_COLOR) Target folder is not a git repo,
 | 
				
			||||||
Please consider following $(BOLD)https://docs.qmk.fm/\#/newbs_getting_started$(NO_COLOR).\n\n
 | 
					Please consider following $(BOLD)https://docs.qmk.fm/\#/newbs_getting_started$(NO_COLOR).\n\n
 | 
				
			||||||
MSG_SUBMODULE_DIRTY = $(WARN_COLOR)WARNING:$(NO_COLOR) Some git submodules are out of date or modified.\n\
 | 
					MSG_SUBMODULE_DIRTY = $(WARN_COLOR)WARNING:$(NO_COLOR) Some git submodules are out of date or modified.\n\
 | 
				
			||||||
Please consider running $(BOLD)qmk git-submodule$(NO_COLOR).\n\n
 | 
					Please consider running $(BOLD)qmk git-submodule$(NO_COLOR).\n\n
 | 
				
			||||||
MSG_NO_CMP = $(ERROR_COLOR)Error:$(NO_COLOR)$(BOLD) cmp command not found, please install diffutils\n$(NO_COLOR)
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
define GENERATE_MSG_MAKE_KB
 | 
					define GENERATE_MSG_MAKE_KB
 | 
				
			||||||
    MSG_MAKE_KB_ACTUAL := Making $$(KB_SP) with keymap $(BOLD)$$(CURRENT_KM)$(NO_COLOR)
 | 
					    MSG_MAKE_KB_ACTUAL := Making $$(KB_SP) with keymap $(BOLD)$$(CURRENT_KM)$(NO_COLOR)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue