summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-01-23 12:10:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-24 20:09:00 +0000
commitfcdc8d7f6d10b3abf9f6a28cff55b1cc89b88bc9 (patch)
tree61c0c97b459479dfec8e4fe4ce2c4eb4216608a0 /meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch
parente90fad58faf9e25479158359c528999b09be1a02 (diff)
downloadpoky-fcdc8d7f6d10b3abf9f6a28cff55b1cc89b88bc9.tar.gz
libzypp: remove
This was only needed by zypper, which has itself been removed. (From OE-Core rev: 5c8169bd1c114aab76001a38ee4dd68d00d825e0) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch')
-rw-r--r--meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch b/meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch
deleted file mode 100644
index d01ef70b02..0000000000
--- a/meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1Upstream-Status: Pending
2
3# with gcc 4.3.3 and MIPS target, gcc "internal compiler error: segmentation fault" error
4# occurs when compiling Applydeltarpm.cc. I didn't find the exact reason leading to this
5# error, but it should be related to how boost tribool type is interpreted by g++. So provide
6# this mips workaround for now. We'll come back later to check whether it's still required after
7# upgrading to 4.5.0.
8#
9# Signed-off-by Kevin Tian <kevin.tian@intel.com>, 2010-09-08
10
11diff --git a/zypp/repo/Applydeltarpm.cc b/zypp/repo/Applydeltarpm.cc
12index 7b382be..0d7a1f8 100644
13--- a/zypp/repo/Applydeltarpm.cc
14+++ b/zypp/repo/Applydeltarpm.cc
15@@ -77,7 +77,8 @@ namespace zypp
16 else
17 {
18 // _last is 'indeterminate' or '!have'
19- if ( (_last = have) )
20+ _last = have;
21+ if ( _last )
22 MIL << "Found executable " << prog << endl;
23 else
24 WAR << "No executable " << prog << endl;