From patchwork Wed Nov 30 11:29:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Peter_M=C3=BCller?= X-Patchwork-Id: 6218 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4NMcRt5dFKz3wgq for ; Wed, 30 Nov 2022 11:29:30 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4NMcRs3c8Gz1Q3; Wed, 30 Nov 2022 11:29:29 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4NMcRs2TFGz309M; Wed, 30 Nov 2022 11:29:29 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4NMcRr1fd8z2xLC for ; Wed, 30 Nov 2022 11:29:28 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4NMcRq3W65zj8 for ; Wed, 30 Nov 2022 11:29:27 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1669807767; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=MowC7swN3C8NeWkKuV2PnhvAKl41Xl9LanLo6pwGSBk=; b=yQLKKn9yrF5l3gSn+7fKisQujcT+a3sMRZahl5aPI8oQ1YAW+eLOCRtNXWIijMUTuNmEqz Rs1RVxqRUn0SXEBA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1669807767; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=MowC7swN3C8NeWkKuV2PnhvAKl41Xl9LanLo6pwGSBk=; b=jGIFJX12Ugqmq9JzJUgrVvHah4JTnZgbqX8H99t0BuiGY+gwzbOxQ9++LmVce6tG3yEjuu 2JHwChneDtqOK4juPYdVnauoCFNASp0MWnW25gna+Ot2FoPIZJRMD6sREikFF6UAst3Iol GWHzsu2wWmdwNHq93C+skiQn2PrS38izdd4hbS9K1MSWlX/N95ZyTRzT8iLyUkr20Bt6vb Yv+bNVnmnx/fcq3aIm1aK8CtBMlhgIXbNtIRQwgiPB7nHEOKtlKjcdmhZLKF0OIhhS9eP4 MDpCiCQ/HbK/LvPyfz0evPMKHabUvkYHXxEX/rOAlqtW8wwxyvCoiQihtUwF0w== Message-ID: Date: Wed, 30 Nov 2022 12:29:11 +0100 MIME-Version: 1.0 Content-Language: en-US To: development@lists.ipfire.org From: =?utf-8?q?Peter_M=C3=BCller?= Subject: [PATCH] compat-openssl: Fix build X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Reported-by: Stefan Schantl Signed-off-by: Peter Müller --- compat-openssl/compat-openssl.nm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/compat-openssl/compat-openssl.nm b/compat-openssl/compat-openssl.nm index eeb266c57..06ad66563 100644 --- a/compat-openssl/compat-openssl.nm +++ b/compat-openssl/compat-openssl.nm @@ -75,13 +75,10 @@ build #end install - make install INSTALL_PREFIX=%{BUILDROOT} + make install DESTDIR=%{BUILDROOT} - # Remove man pages - rm -rfv %{BUILDROOT}%{sysconfdir}/pki/tls/man %{BUILDROOT}/usr/share/man* - - # Remove configuration files - rm -rfv %{BUILDROOT}%{sysconfdir}/pki + # Remove man pages and configuration files + rm -rfv %{BUILDROOT}%{sysconfdir} %{BUILDROOT}/usr/share/man* # Remove engines rm -rfv %{BUILDROOT}%{libdir}/{engines,openssl}