diff options
author | Nick White <git@njw.me.uk> | 2009-06-15 14:25:24 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-06-15 14:25:24 +0100 |
commit | 17f97fc436c6a38a53493863c95738dd611b0b62 (patch) | |
tree | 692afbeef913a49775eb34a96c7fbe2fe2a5a518 /sys-kernel/libre-sources | |
parent | b575e0c28985df3591398ff1af91fd8a95a725de (diff) | |
download | njw-gentoo-local-17f97fc436c6a38a53493863c95738dd611b0b62.tar.bz2 njw-gentoo-local-17f97fc436c6a38a53493863c95738dd611b0b62.zip |
Fixed libre-sources further
Diffstat (limited to 'sys-kernel/libre-sources')
-rw-r--r-- | sys-kernel/libre-sources/libre-sources-2.6.30.ebuild | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sys-kernel/libre-sources/libre-sources-2.6.30.ebuild b/sys-kernel/libre-sources/libre-sources-2.6.30.ebuild index 011d101..23d1a4c 100644 --- a/sys-kernel/libre-sources/libre-sources-2.6.30.ebuild +++ b/sys-kernel/libre-sources/libre-sources-2.6.30.ebuild @@ -14,7 +14,19 @@ src_unpack() { UNIPATCH_LIST_DEFAULT="" # universal_unpack expects a different kernel tarball name - ln -sf ${WORKDIR}/linux-${KV_FULL}.tar.bz2 ${WORKDIR}/linux-${OKV}.tar.bz2 + expected_tarball=${DISTDIR}/linux-${OKV}.tar.bz2 + + # temporarily move any preexisting kernel tarball + [[ -f $expected_tarball ]] && \ + mv $expected_tarball ${expected_tarball}-original + + ln -sf ${DISTDIR}/linux-${KV_FULL}.tar.bz2 $expected_tarball kernel-2_src_unpack + + rm $expected_tarball + + # put any preexisting tarball back in its original location + [[ -f ${expected_tarball}-original ]] && \ + mv ${expected_tarball}-original $expected_tarball } |