summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2018-03-28 22:30:24 +0200
committerAaron Bauman <bman@gentoo.org>2018-03-29 22:37:44 -0400
commit1e4aab7cf6539ac16335dfde1d83cd17ae2d1072 (patch)
tree019f9e37efea005b8613e019f87e07932bc6cd60 /app-emulation/qemu
parentdev-haskell/sendfile: use HTTPS (diff)
downloadgentoo-1e4aab7cf6539ac16335dfde1d83cd17ae2d1072.tar.gz
gentoo-1e4aab7cf6539ac16335dfde1d83cd17ae2d1072.tar.bz2
gentoo-1e4aab7cf6539ac16335dfde1d83cd17ae2d1072.zip
app-emulation/qemu: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/7686
Diffstat (limited to 'app-emulation/qemu')
-rw-r--r--app-emulation/qemu/files/qemu-2.11.9999-cflags.patch24
1 files changed, 0 insertions, 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 8d7c387851a5..000000000000
--- 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
-
- ##########################################