From a523822e8a876c940738ded3ae3292b526cbe6c2 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 4 Aug 2024 17:38:30 +0300 Subject: [PATCH] Promote 'make check-links' deprecation warning to error --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d6563b03167..fa0d19fef4a 100644 --- a/Makefile +++ b/Makefile @@ -51,9 +51,9 @@ linkcheck: BUILDER = linkcheck linkcheck: html ## check-links (deprecated: use 'make linkcheck' alias instead) -.PHONY: pages -check-links: linkcheck - @echo "\033[0;33mWarning:\033[0;31m 'make check-links' \033[0;33mis deprecated, use\033[0;32m 'make linkcheck' \033[0;33malias instead\033[0m" +.PHONY: check-links +check-links: + @echo "\033[0;33mError:\033[0;31m 'make check-links' \033[0;33mis deprecated, use\033[0;32m 'make linkcheck' \033[0;33malias instead\033[0m" ## clean to remove the venv and build files .PHONY: clean