diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-11-22 17:16:14 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-11-22 17:16:14 +0000 |
commit | c0f237e48b2f3ab7278ddb510897adb1f4757f1c (patch) | |
tree | e0f6f84ef2c977174f9c6f01dcb300d61432b486 /eclass/vmware-mod.eclass | |
parent | Add metadata.xml (diff) | |
download | historical-c0f237e48b2f3ab7278ddb510897adb1f4757f1c.tar.gz historical-c0f237e48b2f3ab7278ddb510897adb1f4757f1c.tar.bz2 historical-c0f237e48b2f3ab7278ddb510897adb1f4757f1c.zip |
Moved CD check to src_unpack, made sure we only unpack the openssl libs if they're in SRC_URI, and make sure we only remove the openssl libs if the new ones are present.
Diffstat (limited to 'eclass/vmware-mod.eclass')
-rw-r--r-- | eclass/vmware-mod.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/vmware-mod.eclass b/eclass/vmware-mod.eclass index 12b33742d633..c82d2ebc90c0 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.5 2006/10/17 09:15:07 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vmware-mod.eclass,v 1.6 2006/11/22 17:16:14 wolf31o2 Exp $ # Ensure vmware comes before linux-mod since we want linux-mod's pkg_preinst and @@ -72,6 +72,7 @@ vmware-mod_src_unpack() { # rm getversion.pl EPATCH_SUFFIX="patch" epatch "${FILESDIR}"/patches + [[ -d "${FILESDIR}"/patches/${mod} ]] && epatch "${FILESDIR}"/patches/${mod} convert_to_m "${S}"/${mod}-only/Makefile done } |