commit: 8bfd605926ea8ee4deb13cda75016f698fd22503
Author: Violet Purcell <vimproved <AT> inventati <DOT> org>
AuthorDate: Sat Jul 8 18:26:07 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 9 02:02:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bfd6059
dev-cpp/cpp-httplib: Remove superfluous --reflink=auto from calls to cp
--reflink=auto has become the default behaviour in coreutils 9, and is not
compatible with BSD userland.
Signed-off-by: Violet Purcell <vimproved <AT> inventati.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/cpp-httplib/cpp-httplib-0.12.3.ebuild | 2 +-
dev-cpp/cpp-httplib/cpp-httplib-0.12.6.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.12.3.ebuild
b/dev-cpp/cpp-httplib/cpp-httplib-0.12.3.ebuild
index 0a629fc03232..3940a9e7fc05 100644
--- a/dev-cpp/cpp-httplib/cpp-httplib-0.12.3.ebuild
+++ b/dev-cpp/cpp-httplib/cpp-httplib-0.12.3.ebuild
@@ -44,7 +44,7 @@ src_configure() {
}
multilib_src_test() {
- cp -p -R --reflink=auto "${S}/test" ./test || die
+ cp -p -R "${S}/test" ./test || die
emake -C test "CXX=$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} -I."
}
diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.12.6.ebuild
b/dev-cpp/cpp-httplib/cpp-httplib-0.12.6.ebuild
index d084d2656c17..b5c075454fdb 100644
--- a/dev-cpp/cpp-httplib/cpp-httplib-0.12.6.ebuild
+++ b/dev-cpp/cpp-httplib/cpp-httplib-0.12.6.ebuild
@@ -44,7 +44,7 @@ src_configure() {
}
multilib_src_test() {
- cp -p -R --reflink=auto "${S}/test" ./test || die
+ cp -p -R "${S}/test" ./test || die
GTEST_FILTER='-*.*_Online' emake -C test "CXX=$(tc-getCXX)"
CXXFLAGS="${CXXFLAGS} -I."
}