diff options
Diffstat (limited to 'net-p2p/retroshare')
-rw-r--r-- | net-p2p/retroshare/retroshare-scm.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-p2p/retroshare/retroshare-scm.ebuild b/net-p2p/retroshare/retroshare-scm.ebuild index d185eed..3c2796a 100644 --- a/net-p2p/retroshare/retroshare-scm.ebuild +++ b/net-p2p/retroshare/retroshare-scm.ebuild @@ -107,12 +107,12 @@ src_prepare() { } src_configure() { - local conf_add="c++11 release" - use sqlcipher || conf_add="${conf_add} NO_SQLCIPHER" + local conf_add="release no-debug c++11" + use sqlcipher || conf_add="${conf_add} no_sqlcipher" for dir in ${rs_src_dirs} ; do pushd "${S}/${dir}" 2>/dev/null || die - use qt5 && eqmake5 CONFIG+="${conf_add}" CONFIG-="debug" - use qt4 && eqmake4 CONFIG+="${conf_add}" CONFIG-="debug" + use qt5 && eqmake5 CONFIG+="${conf_add}" + use qt4 && eqmake4 CONFIG+="${conf_add}" popd 2>/dev/null || die done } |