Project Talk:Apache/Developer Documentation

From Gentoo Wiki
Jump to:navigation Jump to:search
Note
This is a Talk page - please see the documentation about using talk pages. Add newer comments below older ones, sign comments using four tildes (~~~~), and indent successive comments with colons (:). Add new sections at the bottom of the page, under a heading (== ==). Please remember to mark sections as "open for discussion" using {{talk|open}}, so they 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)