diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2016-11-12 10:00:15 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2016-11-12 10:00:15 +0300 |
commit | c838e14d81cf91ca20b3269691bb4a85a6dd3abc (patch) | |
tree | 85df315062dc942f93c3919a9a2bfe2e93c80de6 /net-p2p/retroshare | |
parent | 6250e6d52a4ce8b49bd769e328949fb0603febc4 (diff) |
retroshare: options fix
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 } |