diff options
author | Adam Duskett <Aduskett@gmail.com> | 2017-07-31 09:53:42 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-31 19:09:09 +0200 |
commit | 30cf833b88e7e374ff13010e013ce7c7fee2956a (patch) | |
tree | c9187312379f9d6af6a6253a1004f35b596af077 /package/fftw/Config.in | |
parent | 474e049f9660b7e181dc5d25c626a3e9d20bf581 (diff) | |
download | buildroot-30cf833b88e7e374ff13010e013ce7c7fee2956a.tar.gz buildroot-30cf833b88e7e374ff13010e013ce7c7fee2956a.zip |
package/f*: fix wrapping of Config.in help text
The check-package script when ran gives warnings on text wrapping
on all of these Config files. This patch cleans up all warnings
related to the text wrapping for the Config files starting with
the letter f in the package directory.
The appropriate indentation is: <tab><2 spaces><62 chars>
See http://nightly.buildroot.org/#writing-rules-config-in for more
information.
Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/fftw/Config.in')
-rw-r--r-- | package/fftw/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/fftw/Config.in b/package/fftw/Config.in index ef1138493f..d51f8f3c51 100644 --- a/package/fftw/Config.in +++ b/package/fftw/Config.in @@ -33,15 +33,15 @@ config BR2_PACKAGE_FFTW_PRECISION_SINGLE select BR2_PACKAGE_FFTW_USE_SSE2 if BR2_X86_CPU_HAS_SSE2 select BR2_PACKAGE_FFTW_USE_NEON if BR2_ARM_CPU_HAS_NEON && !BR2_ARM_SOFT_FLOAT help - Compile fftw in single precision, i.e. use 'float' for floating - point type. + Compile fftw in single precision, i.e. use 'float' for + floating point type. config BR2_PACKAGE_FFTW_PRECISION_DOUBLE bool "double" select BR2_PACKAGE_FFTW_USE_SSE2 if BR2_X86_CPU_HAS_SSE2 help - Compile fftw in double precision (the default), i.e. use 'double' - for floating point type. + Compile fftw in double precision (the default), i.e. use + 'double' for floating point type. config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE bool "long double" |