diff options
author | Yuta SATOH <nigoro.dev@gmail.com> | 2019-04-20 15:40:36 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-04-20 15:43:00 +0200 |
commit | 6c9415811b77a1e4759fd653fab89d272f724d01 (patch) | |
tree | 2f932478011a560adb9088b1d92c67a1c90dbfda /eclass/apache-2.eclass | |
parent | profiles/arch/sparc/package.use.mask: mask dir2agg USE flags that require ffm... (diff) | |
download | gentoo-6c9415811b77a1e4759fd653fab89d272f724d01.tar.gz gentoo-6c9415811b77a1e4759fd653fab89d272f724d01.tar.bz2 gentoo-6c9415811b77a1e4759fd653fab89d272f724d01.zip |
Improved elog message for userland_BSD systems
so users don't see this warning:
[warn] (2)No such file or directory: Failed to enable the 'dataready'
Accept Filter
Closes: https://bugs.gentoo.org/454970
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'eclass/apache-2.eclass')
-rw-r--r-- | eclass/apache-2.eclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index d7c8254d8b24..886161758a32 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -418,6 +418,9 @@ apache-2_pkg_setup() { if use userland_BSD; then elog "On BSD systems you need to add the following line to /boot/loader.conf:" elog " accf_http_load=\"YES\"" + if use ssl ; then + elog " accf_data_load=\"YES\"" + fi elog fi } |