This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.

Please visit our production wiki at https://wiki.gentoo.org

Project Talk:Apache/Developer Documentation

From Gentoo Wiki (test)
Jump to:navigation Jump to:search
Note
This is a talk page. Please add newer comments below older ones, and sign your comments using four tildes (~~~~). When adding a new section (at the bottom of the page), please mark it as "open for discussion" by using {{talk|open}} so it will show up in the list of open discussions.

duplicate arguments in template calls

Talk status
This discussion is done.

Please replace

{{CodeBox|title=mod_ldap_userdir-1.1.12 (edited)|lang=bash|1=
src_compile() {
    econf || die "econf failed"
    use ssl && APXS2_ARGS="${APXS2_ARGS} -DTLS=1"
    apache-module_src_compile
}
}}

with

{{CodeBox|title=mod_ldap_userdir-1.1.12 (edited)|lang=bash|1=
src_compile() {
    econf {{!}}{{!}} die "econf failed"
    use ssl && APXS2_ARGS="${APXS2_ARGS} -DTLS=1"
    apache-module_src_compile
}
}}

--Cronolio (talk) 12:54, 1 July 2017 (UTC)

Fixed formatting. --Grknight (talk) 00:48, 8 November 2018 (UTC)