diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-08 21:39:34 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-08 21:39:34 +0000 |
commit | ee9982e6fdd5809934490db11ca500976c135573 (patch) | |
tree | ed298da24cb69e3778a7bf1208b360555ce43454 /eclass | |
parent | Remove unused patch. (diff) | |
download | historical-ee9982e6fdd5809934490db11ca500976c135573.tar.gz historical-ee9982e6fdd5809934490db11ca500976c135573.tar.bz2 historical-ee9982e6fdd5809934490db11ca500976c135573.zip |
Previous approach was wrong
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/emul-linux-x86.eclass | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 07dd20cc061f..d7a33b78f537 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1244 2014/05/07 21:04:48 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1245 2014/05/08 21:39:34 pacho Exp $ + + 08 May 2014; Pacho Ramos <pacho@gentoo.org> emul-linux-x86.eclass: + Previous approach was wrong 07 May 2014; Pacho Ramos <pacho@gentoo.org> emul-linux-x86.eclass: Don't remove wrappers in that dir diff --git a/eclass/emul-linux-x86.eclass b/eclass/emul-linux-x86.eclass index 257f4e1b855f..1d5461adbf32 100644 --- a/eclass/emul-linux-x86.eclass +++ b/eclass/emul-linux-x86.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v 1.21 2014/05/07 21:04:48 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v 1.22 2014/05/08 21:39:34 pacho Exp $ # # Original Author: Mike Doty <kingtaco@gentoo.org> @@ -82,10 +82,4 @@ emul-linux-x86_src_install() { popd >/dev/null fi - - # Move headers to a separate directory, bug #509556 - if [[ -d "${D}"/usr/include ]] ; then - mkdir -p "${D}"/usr/include/i686-pc-linux-gnu/ - mv "${D}"/usr/include/* "${D}"/usr/include/i686-pc-linux-gnu/. - fi } |