summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-12-22 09:13:42 +0100
committerMichał Górny <mgorny@gentoo.org>2019-12-22 09:26:17 +0100
commit177aa8fafbb1ccc098c3219e2300bfe6943c3078 (patch)
tree5dd0116eff39eb643521cdab46886bee639450df /eclass
parentsys-kernel/vanilla-kernel: [QA] Fix missing eend arg (diff)
downloadgentoo-177aa8fafbb1ccc098c3219e2300bfe6943c3078.tar.gz
gentoo-177aa8fafbb1ccc098c3219e2300bfe6943c3078.tar.bz2
gentoo-177aa8fafbb1ccc098c3219e2300bfe6943c3078.zip
llvm.org.eclass: [QA] Fix missing eend arg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/llvm.org.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/llvm.org.eclass b/eclass/llvm.org.eclass
index cef31a087798..d9ea22ab2aca 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