From 52445c96699e18fd13bab25cc6e508675c9c26aa Mon Sep 17 00:00:00 2001 From: Tomas Chvatal Date: Wed, 13 Jun 2012 12:17:17 +0000 Subject: Make the oxt unpacking really work. --- eclass/ChangeLog | 5 ++++- eclass/myspell-r2.eclass | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) (limited to 'eclass') diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 1c0a2929bf25..4b26a056b676 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.312 2012/06/13 11:06:17 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.313 2012/06/13 12:17:17 scarabeus Exp $ + + 13 Jun 2012; Tomáš Chvátal myspell-r2.eclass: + Make the oxt unpacking really work. 13 Jun 2012; Tomáš Chvátal myspell-r2.eclass: Handle dodoc correctly to not die if no documents are found. diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass index eb3fe6a31a6d..9e8daced3a19 100644 --- a/eclass/myspell-r2.eclass +++ b/eclass/myspell-r2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/myspell-r2.eclass,v 1.3 2012/06/13 11:06:17 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/myspell-r2.eclass,v 1.4 2012/06/13 12:17:17 scarabeus Exp $ # @ECLASS: aspell-dict.eclass # @MAINTAINER: @@ -48,9 +48,9 @@ myspell-r2_src_unpack() { for f in ${A}; do case ${f} in *.oxt) - echo ">>> Unpacking ${f} to ${PWD}" - unzip -qoj ${f} - assert "failed unpacking ${f}" + echo ">>> Unpacking "${DISTDIR}/${f}" to ${PWD}" + unzip -qoj ${DISTDIR}/${f} + assert "failed unpacking ${DISTDIR}/${f}" ;; *) unpack ${f} ;; esac -- cgit v1.2.3-65-gdbad