From a3fa7b9e416fb0d2f9dd689568e71a0f284addb7 Mon Sep 17 00:00:00 2001 From: Carles Tubio Date: Fri, 22 Nov 2024 14:03:36 +0000 Subject: [PATCH] Fixed pvs version. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ████ ███ To request new features or in case this commit breaks something for you, ████ ███ please, create a new github issue with all possible information for me, ▓███▀█▄ but never share your API Keys! ▒▓██ ███ ░▒▓█ ███ Signed-off-by: Carles Tubio _________________________________________ / Hello, WORLD! \ | | \ pssst.. 1.00000000 BTC = 93626.36 EUR. / ----------------------------------------- \ ^__^ \ (oo)\_______ (__)\ )\/\ ||----w | || || --- Makefile | 2 +- src/lib/Makefile | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 7ca44349f..d9b573b82 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ K ?= K.sh MAJOR = 0 MINOR = 7 PATCH = 0 -BUILD = 51 +BUILD = 52 OBLIGATORY = DISCLAIMER: This is strict non-violent software: \n$\ if you hurt other living creatures, please stop; \n$\ diff --git a/src/lib/Makefile b/src/lib/Makefile index 3c20f92e4..944367801 100644 --- a/src/lib/Makefile +++ b/src/lib/Makefile @@ -108,12 +108,12 @@ uv: pvs: ifndef V_PVS - $(MAKE) $@ V_PVS=$(shell curl -s https://pvs-studio.com/en/pvs-studio/download-all/ | grep x86_64.tgz | cut -d'"' -f2 | cut -d'.' -f-4 | cut -d'-' -f3- | head -n1) + $(MAKE) $@ V_PVS=$(shell curl -s https://pvs-studio.com/en/pvs-studio/download-all/ | grep x86_64.tgz | cut -d'"' -f2 | cut -d'-' -f2- | cut -d'.' -f-4 | head -n1) else - test -d $(KBUILD)/var/pvs-studio-$(V_PVS) || ( \ - curl -L https://files.pvs-studio.com/pvs-studio-$(V_PVS).tgz \ - | tar xz -C $(KBUILD)/var && cd $(KBUILD)/var/pvs-studio-$(V_PVS) \ - && chmod +x install.sh && sudo ./install.sh ) + test -d $(KBUILD)/var/pvs-$(V_PVS) || ( \ + curl -L https://files.pvs-studio.com/pvs-$(V_PVS).tgz \ + | tar xz -C $(KBUILD)/var && cd $(KBUILD)/var/pvs-$(V_PVS) \ + && chmod +x install.sh && sudo ./install.sh ) endif lcov: