diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-03-18 21:29:29 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-03-24 04:58:34 +0100 |
commit | d7317785d04e7de172de3bff05852fca3cd15af2 (patch) | |
tree | 39f2e24069d903cc05c898c695d9a703fcaf5ca9 /eclass/fortran-2.eclass | |
parent | app-shells/nushell: Add 0.60.0 (diff) | |
download | gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.gz gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.bz2 gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.zip |
*.eclass: @ECLASS-VARIABLE renamed to @ECLASS_VARIABLE
Bug: https://bugs.gentoo.org/835396
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/fortran-2.eclass')
-rw-r--r-- | eclass/fortran-2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index 8fea2b4ceced..e26dd700f7cf 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -39,13 +39,13 @@ EXPORT_FUNCTIONS pkg_setup if [[ ! ${_FORTRAN_2_CLASS} ]]; then -# @ECLASS-VARIABLE: FORTRAN_NEED_OPENMP +# @ECLASS_VARIABLE: FORTRAN_NEED_OPENMP # @DESCRIPTION: # Set to "1" in order to automatically have the eclass abort if the fortran # compiler lacks openmp support. : ${FORTRAN_NEED_OPENMP:=0} -# @ECLASS-VARIABLE: FORTRAN_STANDARD +# @ECLASS_VARIABLE: FORTRAN_STANDARD # @DESCRIPTION: # Set this, if a special dialect needs to be supported. # Generally not needed as default is sufficient. @@ -53,7 +53,7 @@ if [[ ! ${_FORTRAN_2_CLASS} ]]; then # Valid settings are any combination of: 77 90 95 2003 : ${FORTRAN_STANDARD:=77} -# @ECLASS-VARIABLE: FORTRAN_NEEDED +# @ECLASS_VARIABLE: FORTRAN_NEEDED # @DESCRIPTION: # If your package has an optional fortran support, set this variable # to the space separated list of USE triggering the fortran |