summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Franchini <twitch153@gentoo.org>2016-01-13 15:48:57 -0500
committerDevan Franchini <twitch153@gentoo.org>2016-01-13 15:49:25 -0500
commit40cd1e1305bbc6dfe82c27ad3b78f4556527a2d0 (patch)
tree87eed6bd37dfea1d57cf5101018175f23a5fca4f /games-emulation/dolphin
parentdev-perl/BSD-Resource: Remove old (diff)
downloadgentoo-40cd1e1305bbc6dfe82c27ad3b78f4556527a2d0.tar.gz
gentoo-40cd1e1305bbc6dfe82c27ad3b78f4556527a2d0.tar.bz2
gentoo-40cd1e1305bbc6dfe82c27ad3b78f4556527a2d0.zip
games-emulation/dolphin: Removes saving of GL external folder
The GL external folder is no longer used and attempting to save it will cause a failure when running the ebuild. X-Gentoo-Bug: 571272 X-Gentoo-Bug-URL: https://bugs.gentoo.org/571272 Package-Manager: portage-2.2.24
Diffstat (limited to 'games-emulation/dolphin')
-rw-r--r--games-emulation/dolphin/dolphin-9999.ebuild3
1 files changed, 0 insertions, 3 deletions
diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild
index c44022abf3c0..33a6bf881323 100644
--- a/games-emulation/dolphin/dolphin-9999.ebuild
+++ b/games-emulation/dolphin/dolphin-9999.ebuild
@@ -119,18 +119,15 @@ src_prepare() {
# Remove ALL the bundled libraries, aside from:
# - SOIL: The sources are not public.
# - Bochs-disasm: Don't know what it is.
- # - GL: A custom gl.h file is used.
# - gtest: Their build set up solely relies on the build in gtest.
# - xxhash: Not on the tree.
mv Externals/SOIL . || die
mv Externals/Bochs_disasm . || die
- mv Externals/GL . || die
mv Externals/gtest . || die
mv Externals/xxhash . || die
rm -r Externals/* || die "Failed to delete Externals dir."
mv Bochs_disasm Externals || die
mv SOIL Externals || die
- mv GL Externals || die
mv gtest Externals || die
mv xxhash Externals || die
}