diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-10-05 15:14:07 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-10-05 15:14:07 +0000 |
commit | 0dcad7bc1f25cb8e424dbc2bbfcb002a6b3af18e (patch) | |
tree | 3a926fd2e74ed5880671b4bb4b457d395bdf8678 /eclass/nsplugins.eclass | |
parent | remove old (diff) | |
download | gentoo-2-0dcad7bc1f25cb8e424dbc2bbfcb002a6b3af18e.tar.gz gentoo-2-0dcad7bc1f25cb8e424dbc2bbfcb002a6b3af18e.tar.bz2 gentoo-2-0dcad7bc1f25cb8e424dbc2bbfcb002a6b3af18e.zip |
Fix QA warning on dosym. Thanks to Diego for fix.
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 fa456c8eeb82..247978b05974 100644 --- a/eclass/nsplugins.eclass +++ b/eclass/nsplugins.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.25 2011/08/09 18:47:40 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.26 2011/10/05 15:14:07 scarabeus Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -45,5 +45,5 @@ pkg_mv_plugins() { # First argument should be the plugin file. inst_plugin() { dodir /usr/$(get_libdir)/${PLUGINS_DIR} - dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR} + dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR}/$(basename ${1}) } |