From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E45E3138247 for ; Sat, 7 Dec 2013 09:14:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3ADCE096B; Sat, 7 Dec 2013 09:14:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D1DFE096B for ; Sat, 7 Dec 2013 09:14:18 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3745533F47A for ; Sat, 7 Dec 2013 09:14:17 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id F28D92004B; Sat, 7 Dec 2013 09:14:15 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: multiprocessing.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: multiprocessing.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131207091415.F28D92004B@flycatcher.gentoo.org> Date: Sat, 7 Dec 2013 09:14:15 +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: 1a803d24-b935-4e02-a653-481cabbb1265 X-Archives-Hash: 324df6c18aa7935e234e1eea8768cccd vapier 13/12/07 09:14:15 Modified: multiprocessing.eclass Log: use $CBUILD rather than uname for host detection #479656 Revision Changes Path 1.7 eclass/multiprocessing.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multiprocessing.eclass?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multiprocessing.eclass?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multiprocessing.eclass?r1=1.6&r2=1.7 Index: multiprocessing.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/multiprocessing.eclass,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- multiprocessing.eclass 6 Dec 2013 03:04:01 -0000 1.6 +++ multiprocessing.eclass 7 Dec 2013 09:14:15 -0000 1.7 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multiprocessing.eclass,v 1.6 2013/12/06 03:04:01 jcallen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multiprocessing.eclass,v 1.7 2013/12/07 09:14:15 vapier Exp $ # @ECLASS: multiprocessing.eclass # @MAINTAINER: @@ -228,7 +228,7 @@ local var=$1 file=$2 redir=${3:-"<>"} # Make sure /dev/fd is sane on Linux hosts. #479656 - if [[ ! -L /dev/fd && $(uname) == Linux ]] ; then + if [[ ! -L /dev/fd && ${CBUILD} == *linux* ]] ; then eerror "You're missing a /dev/fd symlink to /proc/self/fd." eerror "Please fix the symlink and check your boot scripts (udev/etc...)." die "/dev/fd is broken"