diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-10-01 01:48:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-10-01 01:48:45 +0000 |
commit | 7f2da438cfa18e812590da6548077e0c4cca5e36 (patch) | |
tree | 88020d5b2bd93111e77e554f2c82f87f3a8e3144 /sys-fs/static-dev | |
parent | version bump. cleanup (diff) | |
download | gentoo-2-7f2da438cfa18e812590da6548077e0c4cca5e36.tar.gz gentoo-2-7f2da438cfa18e812590da6548077e0c4cca5e36.tar.bz2 gentoo-2-7f2da438cfa18e812590da6548077e0c4cca5e36.zip |
Fixup from Scott Price for devfs test #137434.
(Portage version: 2.1.3.9)
Diffstat (limited to 'sys-fs/static-dev')
-rw-r--r-- | sys-fs/static-dev/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/static-dev/static-dev-0.1.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/sys-fs/static-dev/ChangeLog b/sys-fs/static-dev/ChangeLog index 385098ec995c..0827ef36233b 100644 --- a/sys-fs/static-dev/ChangeLog +++ b/sys-fs/static-dev/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/static-dev # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/static-dev/ChangeLog,v 1.8 2007/09/17 21:04:48 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/static-dev/ChangeLog,v 1.9 2007/10/01 01:48:45 vapier Exp $ + + 01 Oct 2007; Mike Frysinger <vapier@gentoo.org> static-dev-0.1.ebuild: + Fixup from Scott Price for devfs test #137434. 17 Sep 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing johnm from metadata.xml (see #186467 for reference). diff --git a/sys-fs/static-dev/static-dev-0.1.ebuild b/sys-fs/static-dev/static-dev-0.1.ebuild index 26ddfae69358..d37cf0dc7915 100644 --- a/sys-fs/static-dev/static-dev-0.1.ebuild +++ b/sys-fs/static-dev/static-dev-0.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 2005-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/static-dev/static-dev-0.1.ebuild,v 1.8 2006/08/24 02:30:46 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/static-dev/static-dev-0.1.ebuild,v 1.9 2007/10/01 01:48:45 vapier Exp $ inherit toolchain-funcs @@ -17,8 +17,8 @@ DEPEND="" RDEPEND="virtual/baselayout" PROVIDE="virtual/dev-manager" -pkg_setup() { - if [[ -d ${ROOT}/dev/.udev/ || ! -c ${ROOT}/dev/.devfs ]] ; then +pkg_preinst() { + if [[ -d ${ROOT}/dev/.udev || -c ${ROOT}/dev/.devfs ]] ; then echo "" eerror "We have detected that you currently use udev or devfs" eerror "and this ebuild cannot install to the same mount-point." |