diff options
author | Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> | 2023-04-06 18:22:55 +0500 |
---|---|---|
committer | Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> | 2023-04-06 18:59:36 +0500 |
commit | 64d25327b6b2e1986fb31d61b938101f06623eba (patch) | |
tree | 0fe307f04b829b26a2ed723a85691c0577c46c5b /eclass | |
parent | dev-libs/boinc-zip: update Manifest (diff) | |
download | guru-64d25327b6b2e1986fb31d61b938101f06623eba.tar.gz guru-64d25327b6b2e1986fb31d61b938101f06623eba.tar.bz2 guru-64d25327b6b2e1986fb31d61b938101f06623eba.zip |
boinc.eclass: add --enable-static and --disable-fcgi to default flags
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/boinc.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/boinc.eclass b/eclass/boinc.eclass index a90f19dd7..56d972b66 100644 --- a/eclass/boinc.eclass +++ b/eclass/boinc.eclass @@ -109,15 +109,15 @@ boinc_require_source() { # @DESCRIPTION: # Configure BOINC source tree using autotools. # -# If no arguments are given, econf will be called -# with --enable-pkg-devel flag. +# If no arguments are given, econf will be called with +# '--enable-static --enable-pkg-devel --disable-fcgi' flags. # # This function must be called in global scope. boinc_enable_autotools() { debug-print-function ${FUNCNAME} "${@}"] _BOINC_RUN_AUTOTOOLS=1 - _BOINC_ECONF_ARGS=${@:---enable-pkg-devel} + _BOINC_ECONF_ARGS=${@:---enable-static --enable-pkg-devel --disable-fcgi} } # @FUNCTION: boinc_override_config @@ -204,7 +204,7 @@ boinc_src_configure() { edo bash ./generate_svn_version.sh if [[ ${_BOINC_RUN_AUTOTOOLS} ]]; then - econf "${_BOINC_ECONF_ARGS[@]}" + econf ${_BOINC_ECONF_ARGS} else tc-export AR CC CPP CXX LD OBJDUMP RANLIB fi |