diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-03-03 17:02:27 +0100 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-03-03 22:10:08 -0500 |
commit | 040987a98f98df9847282e34afab20fb95874703 (patch) | |
tree | d4f01df7f862171ea2c2df5ae9dfab7feaa73423 /sys-libs/libcxx | |
parent | net-vpn/libreswan: remove unused patch(es) (diff) | |
download | gentoo-040987a98f98df9847282e34afab20fb95874703.tar.gz gentoo-040987a98f98df9847282e34afab20fb95874703.tar.bz2 gentoo-040987a98f98df9847282e34afab20fb95874703.zip |
sys-libs/libcxx: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11238
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'sys-libs/libcxx')
-rw-r--r-- | sys-libs/libcxx/files/libcxx-7.0.0-libsupcxx-install.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/sys-libs/libcxx/files/libcxx-7.0.0-libsupcxx-install.patch b/sys-libs/libcxx/files/libcxx-7.0.0-libsupcxx-install.patch deleted file mode 100644 index 35b04e253e61..000000000000 --- a/sys-libs/libcxx/files/libcxx-7.0.0-libsupcxx-install.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 84f960980e5bbaf136bc130cb385379b8f610335 Mon Sep 17 00:00:00 2001 -From: Petr Hosek <phosek@chromium.org> -Date: Thu, 4 Oct 2018 05:38:53 +0000 -Subject: [PATCH] [CMake] Use just basename when copying C++ ABI headers - -This avoids duplicate directories when the filename includes path. - -Fixes PR39145 - -Differential Revision: https://reviews.llvm.org/D52762 - -git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@343753 91177308-0d34-0410-b5e6-96231b3b80d8 ---- - cmake/Modules/HandleLibCXXABI.cmake | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/cmake/Modules/HandleLibCXXABI.cmake b/cmake/Modules/HandleLibCXXABI.cmake -index ef3b4f5dd..1c19d7e01 100644 ---- a/cmake/Modules/HandleLibCXXABI.cmake -+++ b/cmake/Modules/HandleLibCXXABI.cmake -@@ -41,7 +41,7 @@ macro(setup_abi_lib abidefines abilib abifiles abidirs) - get_filename_component(ifile ${fpath} NAME) - set(src ${incpath}/${fpath}) - -- set(dst ${LIBCXX_BINARY_INCLUDE_DIR}/${dstdir}/${fpath}) -+ set(dst ${LIBCXX_BINARY_INCLUDE_DIR}/${dstdir}/${ifile}) - add_custom_command(OUTPUT ${dst} - DEPENDS ${src} - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src} ${dst} --- -2.19.0 - |