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 02DDC1382C5 for ; Fri, 30 Mar 2018 02:54:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B6CCE09B6; Fri, 30 Mar 2018 02:54:22 +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 24E3CE099F for ; Fri, 30 Mar 2018 02:54:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 03ECD335D2E for ; Fri, 30 Mar 2018 02:54:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47FFB281 for ; Fri, 30 Mar 2018 02:54:17 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1522377464.1e4aab7cf6539ac16335dfde1d83cd17ae2d1072.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/qemu/files/qemu-2.11.9999-cflags.patch X-VCS-Directories: app-emulation/qemu/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 1e4aab7cf6539ac16335dfde1d83cd17ae2d1072 X-VCS-Branch: master Date: Fri, 30 Mar 2018 02:54:17 +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: 19b21c86-b026-4fe7-a219-500dee4aec76 X-Archives-Hash: 44601696032d24d279781e7bce84da74 commit: 1e4aab7cf6539ac16335dfde1d83cd17ae2d1072 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Mar 28 20:30:24 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Mar 30 02:37:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4aab7c app-emulation/qemu: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/7686 .../qemu/files/qemu-2.11.9999-cflags.patch | 24 ---------------------- 1 file changed, 24 deletions(-) diff --git a/app-emulation/qemu/files/qemu-2.11.9999-cflags.patch b/app-emulation/qemu/files/qemu-2.11.9999-cflags.patch deleted file mode 100644 index 8d7c387851a..00000000000 --- a/app-emulation/qemu/files/qemu-2.11.9999-cflags.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- a/configure 2018-02-01 22:51:53.068467555 +0000 -+++ b/configure 2018-02-01 22:52:23.965041387 +0000 -@@ -5212,21 +5212,12 @@ fi - if test "$gcov" = "yes" ; then - CFLAGS="-fprofile-arcs -ftest-coverage -g $CFLAGS" - LDFLAGS="-fprofile-arcs -ftest-coverage $LDFLAGS" --elif test "$fortify_source" = "yes" ; then -- CFLAGS="-O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS" - elif test "$debug" = "yes"; then -- if compile_prog "-Og" ""; then -- CFLAGS="-Og $CFLAGS" -- elif compile_prog "-O1" ""; then -- CFLAGS="-O1 $CFLAGS" -- fi - # Workaround GCC false-positive Wuninitialized bugs with Og or O1: - # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=24639 - if cc_has_warning_flag "-Wno-maybe-uninitialized"; then - CFLAGS="-Wno-maybe-uninitialized $CFLAGS" - fi --else -- CFLAGS="-O2 $CFLAGS" - fi - - ##########################################