summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-01-02 22:26:26 +0000
committerGitHub <noreply@github.com>2023-01-02 22:26:26 +0000
commit20ee10339911d23139ab4c04c56229ed96595d98 (patch)
tree180120b90185102ed4f861aeadc1b67661b95d58 /Makefile
parentb497d58d6d0ca5a0d1432272147fe06e0ebfb802 (diff)
Remove cmp checks from Makefile (#19480)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 65b33105c4..8f7ad39b83 100644
--- a/Makefile
+++ b/Makefile
@@ -395,8 +395,6 @@ endef
# Catch everything and parse the command line ourselves.
.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.
if ! $(QMK_BIN) hello 1> /dev/null 2>&1; then printf "$(MSG_PYTHON_MISSING)"; exit 1; fi
ifdef NOT_REPO