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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D80F61382C5 for ; Thu, 18 Mar 2021 11:15:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 287E9E085A; Thu, 18 Mar 2021 11:15:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0E5C3E085A for ; Thu, 18 Mar 2021 11:15:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E5295340DB9 for ; Thu, 18 Mar 2021 11:15:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F4D05AE for ; Thu, 18 Mar 2021 11:15:05 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1616065671.cb5b11dc1f76153067fdad889c05095768725233.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/surf/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/surf/files/surf-2.0-gentoo.patch X-VCS-Directories: www-client/surf/files/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: cb5b11dc1f76153067fdad889c05095768725233 X-VCS-Branch: master Date: Thu, 18 Mar 2021 11:15:05 +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: f7f24edf-a98e-4916-8924-73b837f0cf70 X-Archives-Hash: 8c75c770df0a7de2ea4e060289f3f809 commit: cb5b11dc1f76153067fdad889c05095768725233 Author: Petr Vaněk atlas cz> AuthorDate: Wed Mar 17 15:23:54 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Mar 18 11:07:51 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb5b11dc www-client/surf: Respect CFLAGS and LDFLAGS Closes: https://bugs.gentoo.org/742602 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Petr Vaněk atlas.cz> Closes: https://github.com/gentoo/gentoo/pull/13568 Signed-off-by: Joonas Niilola gentoo.org> www-client/surf/files/surf-2.0-gentoo.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www-client/surf/files/surf-2.0-gentoo.patch b/www-client/surf/files/surf-2.0-gentoo.patch index 07aa6568f55..b0a7b5c8ef0 100644 --- a/www-client/surf/files/surf-2.0-gentoo.patch +++ b/www-client/surf/files/surf-2.0-gentoo.patch @@ -29,8 +29,8 @@ CPPFLAGS = -DVERSION=\"${VERSION}\" -DWEBEXTDIR=\"${LIBPREFIX}\" -D_DEFAULT_SOURCE -CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -s ${LIBS} -+CFLAGS = -std=c99 -pedantic -Wall ${INCS} ${CPPFLAGS} -+LDFLAGS = ${LIBS} ++CFLAGS += -std=c99 -pedantic -Wall ${INCS} ${CPPFLAGS} ++LDFLAGS += ${LIBS} # Solaris #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"