From f3bcb27dfa43b87e8e67f8cc23f16816630b563c Mon Sep 17 00:00:00 2001 From: Steven Newbury Date: Wed, 28 Dec 2016 03:09:18 -0500 Subject: apache-2.eclass: drop path to --with-ssl #516240 The apache configure script assumes that, if you passed in a path, that it's to a standalone install of openssl. It'll then go poking in that dir directly and possible add flags for building against it. This also breaks building/linking of other libraries, in both multilib and cross- compile setups. By dropping the path, we force apache to do the lookup via pkg-config. --- eclass/apache-2.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eclass') diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 919f82faeb46..2a85d48290c6 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -270,7 +270,7 @@ setup_modules() { fi if use ssl ; then - MY_CONF+=( --with-ssl="${EPREFIX}"/usr --enable-ssl=${mod_type} ) + MY_CONF+=( --with-ssl --enable-ssl=${mod_type} ) MY_MODS+=( ssl ) else MY_CONF+=( --without-ssl --disable-ssl ) -- cgit v1.2.3-65-gdbad