diff --git a/Makefile.common b/Makefile.common index 5111d45..d7a1ff5 100644 --- a/Makefile.common +++ b/Makefile.common @@ -49,13 +49,6 @@ spdxcheck: $(SPECFILE) if ! grep -qx "$$LICENSE" $(TOPLVL)/projects/common/licenses-{spdx,exceptions,extra}; then FAIL=yes; echo "ERROR: License '$$LICENSE' is not an allowed SPDX license ID"; fi; \ done; test -z "$$FAIL" -#help cvecheck: Checks -#help for common vulnerabilities and exposures in your package. -cvecheck: - # https://github.com/ikeydoherty/cve-check-tool - # Installation: https://github.com/ikeydoherty/cve-check-tool/wiki - cve-check-tool -M $(TOPLVL)/projects/common/mapping $(SPECFILE) - #help clean: Cleans up the src.rpm file. but not the rpm files or log files. clean: rm -f $(SRPMFILE) diff --git a/Makefile.toplevel b/Makefile.toplevel index e20d599..2ffa2bf 100644 --- a/Makefile.toplevel +++ b/Makefile.toplevel @@ -56,12 +56,6 @@ $(clone_PKGS): $(PACKAGES_FILE) packages/common/Makefile.common $(call subjectprefix,$$pkg); \ ) -#help cvecheck: Checks for common vulnerabilities and exposures in your code. -cvecheck: - # https://github.com/ikeydoherty/cve-check-tool - # Installation: https://github.com/ikeydoherty/cve-check-tool/wiki - cve-check-tool -n -M $(TOPLVL)/projects/common/mapping $(PACKAGES_FILE) - #help pull: Performs a git pull --rebase for each package repo, avoiding the creation #help of merge commits, while displaying any changes since your last pull. It is #help silent if there are no changes.