From: "Mike Frysinger (vapier)" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in eclass: emul-linux-x86.eclass
Date: Fri, 2 Nov 2012 16:38:47 +0000 (UTC) [thread overview]
Message-ID: <20121102163847.35CEC21600@flycatcher.gentoo.org> (raw)
vapier 12/11/02 16:38:47
Modified: emul-linux-x86.eclass
Log:
do not try to move /lib32 if it does not exist #429726
Revision Changes Path
1.14 eclass/emul-linux-x86.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/emul-linux-x86.eclass?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/emul-linux-x86.eclass?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/emul-linux-x86.eclass?r1=1.13&r2=1.14
Index: emul-linux-x86.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- emul-linux-x86.eclass 28 Oct 2012 09:43:49 -0000 1.13
+++ emul-linux-x86.eclass 2 Nov 2012 16:38:46 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2012 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.13 2012/10/28 09:43:49 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/emul-linux-x86.eclass,v 1.14 2012/11/02 16:38:46 vapier Exp $
#
# Original Author: Mike Doty <kingtaco@gentoo.org>
@@ -82,6 +82,8 @@
if [[ ${x86_libdir} != "lib32" ]] ; then
ewarn "Moving lib32/ to ${x86_libdir}/; some libs might not work"
mv "${D}"/usr/lib32 "${D}"/usr/${x86_libdir} || die
- mv "${D}"/lib32 "${D}"/${x86_libdir} || die
+ if [[ -d ${D}/lib32 ]] ; then
+ mv "${D}"/lib32 "${D}"/${x86_libdir} || die
+ fi
fi
}
next reply other threads:[~2012-11-02 16:39 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-02 16:38 Mike Frysinger (vapier) [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-06-28 2:37 [gentoo-commits] gentoo-x86 commit in eclass: emul-linux-x86.eclass Mike Frysinger (vapier)
2013-01-12 16:53 Mike Frysinger (vapier)
2011-07-22 18:10 Pacho Ramos (pacho)
2011-02-07 11:46 Pacho Ramos (pacho)
2011-01-30 0:23 Pacho Ramos (pacho)
2011-01-29 21:46 Pacho Ramos (pacho)
2010-02-22 20:52 Pacho Ramos (pacho)
2007-11-15 5:52 Mike Doty (kingtaco)
2007-11-14 3:42 Mike Doty (kingtaco)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20121102163847.35CEC21600@flycatcher.gentoo.org \
--to=vapier@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox