From b94b9d294fd6de2a3abaa731fcc1bb83d872c366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Membr=C3=A9?= Date: Wed, 17 Jan 2024 20:27:38 +0100 Subject: [PATCH] Fixes #24037: Invalid makefile and missing postinst --- openscap/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openscap/Makefile b/openscap/Makefile index 48d7005ef..62c2740f1 100644 --- a/openscap/Makefile +++ b/openscap/Makefile @@ -6,7 +6,7 @@ PROXY_ENV = $(if $(PROXY), http_proxy=$(PROXY) ftp_proxy=$(PROXY)) GET=get() { $(PROXY_ENV) curl -s -L -o "$$1.part" "$$2" && { openssl dgst -sha256 "$$1.part" | grep -q "$$3" || { echo "Wrong checksum, aborting"; exit 1; }; } && mv "$$1.part" "$$1"; }; get FILES = antisamy.xml openscap.properties openscap_technique.zip -SCRIPTS = postinst prerm +SCRIPTS = postinst #include ../makefiles/common-plugin.mk include ../makefiles/common-scala-plugin.mk