diff options
author | Ulrich Müller <ulm@gentoo.org> | 2017-11-17 03:00:24 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2017-11-17 03:00:24 +0100 |
commit | 835b00242dd729d8edbb187b4f0e32e0c2e06847 (patch) | |
tree | 37ca361c0b981cfce3e84b930feb0d373fcb734e /eclass | |
parent | app-editors/scite: remove old (diff) | |
download | gentoo-835b00242dd729d8edbb187b4f0e32e0c2e06847.tar.gz gentoo-835b00242dd729d8edbb187b4f0e32e0c2e06847.tar.bz2 gentoo-835b00242dd729d8edbb187b4f0e32e0c2e06847.zip |
base.eclass: Fix variable documentation.
Closes: https://bugs.gentoo.org/637712
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/base.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/base.eclass b/eclass/base.eclass index 0a7db1d4992e..edb50a4184b3 100644 --- a/eclass/base.eclass +++ b/eclass/base.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # DEPRECATED @@ -41,18 +41,21 @@ esac EXPORT_FUNCTIONS ${BASE_EXPF} # @ECLASS-VARIABLE: DOCS +# @DEFAULT_UNSET # @DESCRIPTION: # Array containing documents passed to dodoc command. # # DOCS=( "${S}/doc/document.txt" "${S}/doc/doc_folder/" ) # @ECLASS-VARIABLE: HTML_DOCS +# @DEFAULT_UNSET # @DESCRIPTION: # Array containing documents passed to dohtml command. # # HTML_DOCS=( "${S}/doc/document.html" "${S}/doc/html_folder/" ) # @ECLASS-VARIABLE: PATCHES +# @DEFAULT_UNSET # @DESCRIPTION: # PATCHES array variable containing all various patches to be applied. # This variable is expected to be defined in global scope of ebuild. |