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 AFA5F139694 for ; Sat, 11 Feb 2017 20:17:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12B1AE0D18; Sat, 11 Feb 2017 20:17:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E451FE0D18 for ; Sat, 11 Feb 2017 20:17:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DAEED3411B5 for ; Sat, 11 Feb 2017 20:16:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDAF1447E for ; Sat, 11 Feb 2017 20:16:49 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1486844112.43fcb0b5540fcd7818b0f8410fb658ac8ce0da45.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/efivar/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/efivar/files/0.22-flags.patch X-VCS-Directories: sys-libs/efivar/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 43fcb0b5540fcd7818b0f8410fb658ac8ce0da45 X-VCS-Branch: master Date: Sat, 11 Feb 2017 20:16:49 +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-Archives-Salt: 5a89ca82-9027-46e0-8ab3-6f61cd6acb22 X-Archives-Hash: 369e6a235573f28469f0441286eaea09 commit: 43fcb0b5540fcd7818b0f8410fb658ac8ce0da45 Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Sat Feb 11 16:31:24 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Feb 11 20:15:12 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43fcb0b5 sys-libs/efivar: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/3914 sys-libs/efivar/files/0.22-flags.patch | 41 ---------------------------------- 1 file changed, 41 deletions(-) diff --git a/sys-libs/efivar/files/0.22-flags.patch b/sys-libs/efivar/files/0.22-flags.patch deleted file mode 100644 index df49f43af7..0000000000 --- a/sys-libs/efivar/files/0.22-flags.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 5bc17590cb096340fc695da3020883130437d745 Mon Sep 17 00:00:00 2001 -From: Mike Gilbert -Date: Fri, 12 Feb 2016 13:22:13 -0500 -Subject: [PATCH] Make.defaults: Improve gcc/clang detection - -The old filter only matched "gcc" or "clang". - -The new findstring call matches any occurance of gcc or clang. This is -useful when CC includes the full host tuple, like x86_64-pc-linux-gnu-gcc. - -Signed-off-by: Mike Gilbert ---- - Make.defaults | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/Make.defaults b/Make.defaults -index bf814b8..5aed21e 100644 ---- a/Make.defaults -+++ b/Make.defaults -@@ -25,14 +25,14 @@ PKGS = - clang_cflags = - gcc_cflags = -specs=$(TOPDIR)/gcc.specs - cflags = $(CFLAGS) -I${TOPDIR}/src/include/efivar/ \ -- $(if $(filter $(CC),clang),$(clang_cflags),) \ -- $(if $(filter $(CC),gcc),$(gcc_cflags),) \ -+ $(if $(findstring clang,$(CC)),$(clang_cflags),) \ -+ $(if $(findstring gcc,$(CC)),$(gcc_cflags),) \ - $(call pkg-config-cflags) - clang_ccldflags = - gcc_ccldflags = - ccldflags = $(cflags) $(CCLDFLAGS) $(LDFLAGS) \ -- $(if $(filter $(CCLD),clang),$(clang_ccldflags),) \ -- $(if $(filter $(CCLD),gcc),$(gcc_ccldflags),) \ -+ $(if $(findstring clang,$(CCLD)),$(clang_ccldflags),) \ -+ $(if $(findstring gcc,$(CCLD)),$(gcc_ccldflags),) \ - $(call pkg-config-ccldflags) - SOFLAGS=-shared - LDLIBS=$(foreach lib,$(LIBS),-l$(lib)) $(call pkg-config-ldlibs) --- -2.7.1 -