summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2012-06-13 12:17:17 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2012-06-13 12:17:17 +0000
commit0c946d4fe8ea0425ebb27b6124b1f0088d2b4b7d (patch)
tree116fc9cbdd8e4f2edbf75915ed25b37ac4f53b32 /eclass/myspell-r2.eclass
parentEAPI-4, fix SRC_URI, fix HOMEPAGE (diff)
downloadgentoo-2-0c946d4fe8ea0425ebb27b6124b1f0088d2b4b7d.tar.gz
gentoo-2-0c946d4fe8ea0425ebb27b6124b1f0088d2b4b7d.tar.bz2
gentoo-2-0c946d4fe8ea0425ebb27b6124b1f0088d2b4b7d.zip
Make the oxt unpacking really work.
Diffstat (limited to 'eclass/myspell-r2.eclass')
-rw-r--r--eclass/myspell-r2.eclass8
1 files changed, 4 insertions, 4 deletions
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