From patchwork Thu Jun 11 10:02:45 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 3199 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 "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 49jKDD0j7Yz3wbc for ; Thu, 11 Jun 2020 10:02:52 +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 "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 49jKDC616mz1T6; Thu, 11 Jun 2020 10:02:51 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 49jKDC5281z2yVZ; Thu, 11 Jun 2020 10:02:51 +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 "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 49jKDB2SHJz2yCT for ; Thu, 11 Jun 2020 10:02:50 +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) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 49jKD96hY5zcT for ; Thu, 11 Jun 2020 10:02:49 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1591869770; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=yLwSnDXSiK0b6JMmANjCbJQJznWY9tPDDzYpooRk/fA=; b=/SZvm7nypKphhXlBuv8mv3aOJyS0NaNMjRB0l4uOaUdwbXCFc8+IUf98fPS9leYHaBeb5s /WVXpmm49jgzk1BQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1591869770; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=yLwSnDXSiK0b6JMmANjCbJQJznWY9tPDDzYpooRk/fA=; b=Z5w8Ozy8OIWPjaWKUYE55ERFXqI3syAE7A7mGBZlziEhqTng6HhQvfynRfiD28blCV2Fvm /j3CmPGRpdjy9xMKr+5/5j5qbE8MU9k2oElEhoWJ1Pecdhjq6VuKKCZI5tj0fXwkr54MX1 nVvvk8/VDM8IrfHm2NVN2mIM+G3tem+iH3c3eX32kf5B6i+k4TOr2ctyCVBOycXteA07Ia MSqQqmeR43gEVuYNtsov9hBA5cdeliNuCeRgWkhzrN/4/21b9FsBQkGOjJZO+vBYGvp1Iv DctA55yJEWpsZmqKniqF7CaCEYBflYfy8ogtueHVQlnQgHJYMX9xsB1C8CaX7A== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] gmp 6.2.0: Fixed lfs for i586 Date: Thu, 11 Jun 2020 12:02:45 +0200 Message-Id: <20200611100245.1180-1-matthias.fischer@ipfire.org> Authentication-Results: mail01.ipfire.org; auth=pass smtp.mailfrom=matthias.fischer@ipfire.org 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" Signed-off-by: Matthias Fischer --- lfs/gmp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/gmp b/lfs/gmp index ea6e96402..d09100981 100644 --- a/lfs/gmp +++ b/lfs/gmp @@ -100,7 +100,7 @@ ifeq "$(BUILD_ARCH)" "i586" cd $(DIR_APP) && make $(MAKETUNING) -mkdir -pv /usr/lib/sse2 - cd $(DIR_APP) && install -v -m 755 .libs/libgmp.so.10.3.2 /usr/lib/sse2 + cd $(DIR_APP) && install -v -m 755 .libs/libgmp.so.10.4.0 /usr/lib/sse2 endif @rm -rf $(DIR_APP)