From cb877e137670cb47d121d279eb2a13e199e7f5c8 Mon Sep 17 00:00:00 2001 From: Adam Pimentel Date: Fri, 9 Dec 2022 21:52:02 -0500 Subject: [PATCH] Revert "net-p2p/feather: ditto for live ebuild" This reverts commit 1496d74ccef1141bbefd78ff70a7c92c1c3ffedc. Signed-off-by: Adam Pimentel --- net-p2p/feather/feather-9999.ebuild | 45 +++++++++-------------------- 1 file changed, 14 insertions(+), 31 deletions(-) diff --git a/net-p2p/feather/feather-9999.ebuild b/net-p2p/feather/feather-9999.ebuild index af882e78f9..c8d4d36b4f 100644 --- a/net-p2p/feather/feather-9999.ebuild +++ b/net-p2p/feather/feather-9999.ebuild @@ -45,37 +45,20 @@ RDEPEND=" BDEPEND="virtual/pkgconfig" src_configure() { - if has nostrip $FEATURES ; then - local mycmakeargs=( - -DCMAKE_BUILD_TYPE=Debug - -DARCH=x86-64 - -DBUILD_64=ON - -DBUILD_TAG="linux-x64" - -DDONATE_BEG=OFF - -DMANUAL_SUBMODULES=1 - -DSTATIC=OFF - -DSELF_CONTAINED=OFF - -DUSE_DEVICE_TREZOR=OFF - -DXMRIG=$(usex xmrig) - -DWITH_SCANNER=$(usex qrcode) - -DVERSION_IS_RELEASE=true - ) - else - local mycmakeargs=( - -DCMAKE_BUILD_TYPE=Release - -DARCH=x86-64 - -DBUILD_64=ON - -DBUILD_TAG="linux-x64" - -DDONATE_BEG=OFF - -DMANUAL_SUBMODULES=1 - -DSTATIC=OFF - -DSELF_CONTAINED=OFF - -DUSE_DEVICE_TREZOR=OFF - -DXMRIG=$(usex xmrig) - -DWITH_SCANNER=$(usex qrcode) - -DVERSION_IS_RELEASE=true - ) - fi + local mycmakeargs=( + -DARCH=x86-64 + -DBUILD_64=ON + -DBUILD_TAG="linux-x64" + -DDONATE_BEG=OFF + -DMANUAL_SUBMODULES=1 + -DSTATIC=OFF + -DSELF_CONTAINED=OFF + -DUSE_DEVICE_TREZOR=OFF + -DXMRIG=$(usex xmrig) + -DWITH_SCANNER=$(usex qrcode) + -DVERSION_IS_RELEASE=true + ) + cmake_src_configure }