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@inventati.org>
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Violet Purcell
2023-07-08 18:26:07 +00:00
committed by Sam James
parent c75b687ef0
commit 8bfd605926
2 changed files with 2 additions and 2 deletions

View File

@@ -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."
}

View File

@@ -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."
}