summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
Diffstat (limited to 'eclass')
-rw-r--r--eclass/Manifest.gzbin38155 -> 38155 bytes
-rw-r--r--eclass/toolchain.eclass10
2 files changed, 3 insertions, 7 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz
index ee07123fc607..3d1799363bb0 100644
--- a/eclass/Manifest.gz
+++ b/eclass/Manifest.gz
Binary files differ
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 51b28b380584..d69e2094dfbb 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -380,17 +380,13 @@ fi
# Set the source directory depending on whether we're using
# a live git tree, snapshot, or release tarball.
if [[ ${TOOLCHAIN_SET_S} == yes ]] ; then
- s_path=
if tc_is_live ; then
- s_path=${EGIT_CHECKOUT_DIR}
+ S=${EGIT_CHECKOUT_DIR}
elif [[ -n ${SNAPSHOT} ]] ; then
- s_path=${WORKDIR}/gcc-${SNAPSHOT}
+ S=${WORKDIR}/gcc-${SNAPSHOT}
else
- s_path=${WORKDIR}/gcc-${GCC_RELEASE_VER}
+ S=${WORKDIR}/gcc-${GCC_RELEASE_VER}
fi
-
- S="${s_path}"
- unset s_path
fi
gentoo_urls() {