From 49ffe80f75bf4bf38bff474d46daa413a992ecb3 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Tue, 21 Jun 2022 17:14:53 +0200 Subject: [PATCH] Decativate 'make validateRules' --- Makefile | 2 +- tools/dmake.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 22cb89c9e..e0483901e 100644 --- a/Makefile +++ b/Makefile @@ -389,7 +389,7 @@ checkCWEEntries: /tmp/errorlist.xml $(PYTHON_INTERPRETER) tools/listErrorsWithoutCWE.py -F /tmp/errorlist.xml .PHONY: validateRules validateRules: - xmllint --noout rules/*.xml + #xmllint --noout rules/*.xml ###### Build diff --git a/tools/dmake.cpp b/tools/dmake.cpp index a7d0df3b4..557a2a499 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.cpp @@ -503,7 +503,7 @@ int main(int argc, char **argv) fout << "\t$(PYTHON_INTERPRETER) tools/listErrorsWithoutCWE.py -F /tmp/errorlist.xml\n"; fout << ".PHONY: validateRules\n"; fout << "validateRules:\n"; - fout << "\txmllint --noout rules/*.xml\n"; + fout << "\t#xmllint --noout rules/*.xml\n"; fout << "\n###### Build\n\n";