summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorCiaran McCreesh <ciaranm@gentoo.org>2005-03-24 16:36:32 +0000
committerCiaran McCreesh <ciaranm@gentoo.org>2005-03-24 16:36:32 +0000
commitb0d749369ebb0461940ce2d79ce58611313e5580 (patch)
treebfb095417628e2fe28aa8a401c3fd6f8a7117bc4 /eclass
parentVersion bumped to 1.1.8 to resolve problems with livecd-stage1 and also to do... (diff)
downloadgentoo-2-b0d749369ebb0461940ce2d79ce58611313e5580.tar.gz
gentoo-2-b0d749369ebb0461940ce2d79ce58611313e5580.tar.bz2
gentoo-2-b0d749369ebb0461940ce2d79ce58611313e5580.zip
ppc64 hvc device support, bug #86433
Diffstat (limited to 'eclass')
-rw-r--r--eclass/vim.eclass9
1 files changed, 5 insertions, 4 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass
index 1eb2ed685ce7..08e27c19a840 100644
--- a/eclass/vim.eclass
+++ b/eclass/vim.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.103 2005/03/21 18:00:16 ciaranm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.104 2005/03/24 16:36:32 ciaranm Exp $
# Authors:
# Ryan Phillips <rphillips@gentoo.org>
@@ -317,9 +317,10 @@ src_compile() {
WANT_AUTOCONF=2.5 \
make -C src $confrule || die "make $confrule failed"
- # This should fix a sandbox violation (see bug 24447)
- for file in /dev/pty/s* /dev/console; do
- addwrite $file
+ # This should fix a sandbox violation (see bug 24447). The hvc
+ # things are for ppc64, see bug 86433.
+ for file in /dev/pty/s* /dev/console /dev/hvc/* /dev/hvc* ; do
+ [[ -e ${file} ]] && addwrite $file
done
if [[ "${MY_PN}" == "vim-core" ]] ||