diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-08-22 00:10:44 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-08-22 00:10:44 +0000 |
commit | 0dd7b44d7ee99d28bd0b1d0723140e43e5816476 (patch) | |
tree | ec128760ba98645b1bbbf68f312c38814d1ec924 /eclass | |
parent | Version bump. Closing bug #189095. (diff) | |
download | historical-0dd7b44d7ee99d28bd0b1d0723140e43e5816476.tar.gz historical-0dd7b44d7ee99d28bd0b1d0723140e43e5816476.tar.bz2 historical-0dd7b44d7ee99d28bd0b1d0723140e43e5816476.zip |
Moved the creation of the vmware group from the product ebuilds to the modules ebuilds. Closing bug #188642.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vmware-mod.eclass | 4 | ||||
-rw-r--r-- | eclass/vmware.eclass | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/eclass/vmware-mod.eclass b/eclass/vmware-mod.eclass index 9b4b77ced545..cb558e023a1d 100644 --- a/eclass/vmware-mod.eclass +++ b/eclass/vmware-mod.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vmware-mod.eclass,v 1.13 2007/07/28 18:00:42 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vmware-mod.eclass,v 1.14 2007/08/22 00:10:44 wolf31o2 Exp $ # Ensure vmware comes before linux-mod since we want linux-mod's pkg_preinst and @@ -38,6 +38,8 @@ vmware-mod_pkg_setup() { BUILD_TARGETS="auto-build VMWARE_VER=${VMWARE_VER} KERNEL_DIR=${KERNEL_DIR} KBUILD_OUTPUT=${KV_OUT_DIR}" vmware_determine_product + # We create a group for VMware users due to bugs #104480 and #106170 + enewgroup "${VMWARE_GROUP}" if [[ -z "${VMWARE_MODULE_LIST}" ]]; then case ${product} in diff --git a/eclass/vmware.eclass b/eclass/vmware.eclass index 30744186ffc8..4db13dea7bab 100644 --- a/eclass/vmware.eclass +++ b/eclass/vmware.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vmware.eclass,v 1.25 2007/07/28 17:29:56 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vmware.eclass,v 1.26 2007/08/22 00:10:44 wolf31o2 Exp $ # This eclass is for all vmware-* ebuilds in the tree and should contain all # of the common components across the multiple packages. @@ -90,8 +90,6 @@ vmware_determine_product() { vmware_pkg_setup() { vmware_determine_product - # We create a group for VMware users due to bugs #104480 and #106170 - enewgroup "${VMWARE_GROUP}" } vmware_src_unpack() { |