From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 05C93158090 for ; Sat, 7 May 2022 02:11:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C73D6E0821; Sat, 7 May 2022 02:11:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AAC53E0821 for ; Sat, 7 May 2022 02:11:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A85B341D3D for ; Sat, 7 May 2022 02:11:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAEAA450 for ; Sat, 7 May 2022 02:11:29 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1651889481.2a6aba0363b87968b0e77af0a178f4daaa6d464e.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/octaveforge.eclass X-VCS-Directories: eclass/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 2a6aba0363b87968b0e77af0a178f4daaa6d464e X-VCS-Branch: dev Date: Sat, 7 May 2022 02:11:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1c23ddbc-e8a9-4c79-9626-ee0b9a84421e X-Archives-Hash: 87ebb329a5f388f7a7ba7c047f5eef58 commit: 2a6aba0363b87968b0e77af0a178f4daaa6d464e Author: Alessandro Barbieri gmail com> AuthorDate: Sat May 7 00:55:25 2022 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sat May 7 02:11:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2a6aba03 octaveforge.eclass: export LDFLAGS Signed-off-by: Alessandro Barbieri gmail.com> eclass/octaveforge.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/octaveforge.eclass b/eclass/octaveforge.eclass index ed609cd8c..70185a6c7 100644 --- a/eclass/octaveforge.eclass +++ b/eclass/octaveforge.eclass @@ -83,7 +83,8 @@ octaveforge_src_compile() { cmd="disp(__octave_config_info__('octlibdir'));" OCTLIBDIR=$(octavecommand "${cmd}" || die) - export LFLAGS="-L${OCTLIBDIR}" + export LFLAGS="${LFLAGS} -L${OCTLIBDIR}" + export LDFLAGS="${LDFLAGS} -L${OCTLIBDIR}" if [[ -e src/Makefile ]]; then emake -C src all