diff options
author | Joel Challis <git@zvecr.com> | 2023-01-02 22:26:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 22:26:26 +0000 |
commit | 20ee10339911d23139ab4c04c56229ed96595d98 (patch) | |
tree | 180120b90185102ed4f861aeadc1b67661b95d58 /Makefile | |
parent | b497d58d6d0ca5a0d1432272147fe06e0ebfb802 (diff) |
Remove cmp checks from Makefile (#19480)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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 |