diff options
author | George Shapovalov <george@gentoo.org> | 2003-05-13 04:42:54 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2003-05-13 04:42:54 +0000 |
commit | 873cf5d2c3ef798c5603bb199f105b8fa239648b (patch) | |
tree | 56a99085dc6fb3b9880f2b3de466773100212bea /eclass/nsplugins.eclass | |
parent | Added perlmagic dep to 1.1.19 (diff) | |
download | gentoo-2-873cf5d2c3ef798c5603bb199f105b8fa239648b.tar.gz gentoo-2-873cf5d2c3ef798c5603bb199f105b8fa239648b.tar.bz2 gentoo-2-873cf5d2c3ef798c5603bb199f105b8fa239648b.zip |
changed local to absolute symlink in src_mv_plugins as the former breaks with binary packages (phoenix-bin).
Diffstat (limited to 'eclass/nsplugins.eclass')
-rw-r--r-- | eclass/nsplugins.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/nsplugins.eclass b/eclass/nsplugins.eclass index 7cc8caa3cc44..7268e422ae71 100644 --- a/eclass/nsplugins.eclass +++ b/eclass/nsplugins.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.11 2003/03/22 05:58:24 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.12 2003/05/13 04:42:54 george Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -23,7 +23,7 @@ src_mv_plugins() { keepdir /usr/lib/${PLUGINS_DIR} cp -a ${D}/$1/* ${D}/usr/lib/${PLUGINS_DIR} rm -rf ${D}/$1 - dosym ../${PLUGINS_DIR} $1 + dosym /usr/lib/${PLUGINS_DIR} $1 } # This function move plugins in pkg_preinst() in old dir to |