summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-11-23 08:50:00 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-11-23 08:50:00 +0000
commit40a36a2c7b01a9c129859ed8a318ca1ef26c8d7a (patch)
tree345673511d14c1e206f60f61ecf6c071bb382a87 /eclass/nsplugins.eclass
parentSmall fix0r to only unpack ldap patch if ldap is in USE. (diff)
downloadhistorical-40a36a2c7b01a9c129859ed8a318ca1ef26c8d7a.tar.gz
historical-40a36a2c7b01a9c129859ed8a318ca1ef26c8d7a.tar.bz2
historical-40a36a2c7b01a9c129859ed8a318ca1ef26c8d7a.zip
fixor
Diffstat (limited to 'eclass/nsplugins.eclass')
-rw-r--r--eclass/nsplugins.eclass7
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/nsplugins.eclass b/eclass/nsplugins.eclass
index d657c8348603..407e2d7dfef8 100644
--- a/eclass/nsplugins.eclass
+++ b/eclass/nsplugins.eclass
@@ -1,7 +1,7 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author: Martin Schlemmer <azarah@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.4 2002/11/21 19:23:20 phoenix Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.5 2002/11/23 08:50:00 azarah Exp $
# Just some re-usable functions for the netscape/moz plugins sharing
ECLASS=nsplugins
@@ -41,5 +41,8 @@ pkg_mv_plugins() {
# First argument should be the plugin file.
inst_plugin() {
dodir /usr/lib/${PLUGINS_DIR}
- dosym ${1} ${ROOT}/usr/lib/${PLUGINS_DIR}
+# $ROOT should only be used in pkg_*() functions ...
+# dosym ${1} ${ROOT}/usr/lib/${PLUGINS_DIR}
+ dosym ${1} /usr/lib/${PLUGINS_DIR}
}
+