commit: 177aa8fafbb1ccc098c3219e2300bfe6943c3078
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 08:13:42 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 08:26:17 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=177aa8fa
llvm.org.eclass: [QA] Fix missing eend arg
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
eclass/llvm.org.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/llvm.org.eclass b/eclass/llvm.org.eclass
index cef31a08779..d9ea22ab2ac 100644
--- a/eclass/llvm.org.eclass
+++ b/eclass/llvm.org.eclass
@@ -198,7 +198,7 @@ llvm.org_src_unpack() {
tar -x -z -o --strip-components 1 \
-f "${DISTDIR}/${archive}" \
"${components[@]/#/llvm-project-${archive%.tar*}/}" || die
- eend
+ eend ${?}
else
local c archives
# TODO: optimize this
@@ -212,7 +212,7 @@ llvm.org_src_unpack() {
mkdir -p "${top_dir}" || die
tar -C "${top_dir}" -x -J -o --strip-components
1 \
-f "${DISTDIR}/${archives[0]}"
"${sub_path}" || die
- eend
+ eend ${?}
done
fi
fi