diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2019-10-22 12:06:06 -0400 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-10-22 11:06:06 -0500 |
commit | 0f931cfc87f48321ce91f815590e32a6d503137f (patch) | |
tree | dfaa5a30c7b2a2d40b23f0a1379ad55c8d1e56cf | |
parent | 49291d5a401421ec8637da06a2608c44072fe3b8 (diff) | |
download | spack-0f931cfc87f48321ce91f815590e32a6d503137f.tar.gz spack-0f931cfc87f48321ce91f815590e32a6d503137f.tar.bz2 spack-0f931cfc87f48321ce91f815590e32a6d503137f.tar.xz spack-0f931cfc87f48321ce91f815590e32a6d503137f.zip |
ADIOS2: Document endian_reverse variant (#13226)
Update the documentation of the `endian_reverse` variant in ADIOS2.
The short description caused some confusion (for me) :-)
-rw-r--r-- | var/spack/repos/builtin/packages/adios2/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/adios2/package.py b/var/spack/repos/builtin/packages/adios2/package.py index 4be02170f4..e5e10db996 100644 --- a/var/spack/repos/builtin/packages/adios2/package.py +++ b/var/spack/repos/builtin/packages/adios2/package.py @@ -32,7 +32,8 @@ class Adios2(CMakePackage): description='Enable position independent code ' '(for usage of static in shared downstream deps)') variant('endian_reverse', default=False, - description='Enable Endian Interoperability') + description='Enable endian conversion if a different ' + 'endianness is detected between write and read.') # compression libraries variant('blosc', default=True, |