diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:18:07 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-02 14:43:46 +0200 |
| commit | a2b31892a886a5b11bca85ca9e6a689f6f3df9c8 (patch) | |
| tree | da5e5762002f9dbb34043a68043db0edf977da38 /package/unionfs | |
| parent | 168be5c2dbfdd8e37bf87fff321d3bf45e0bb948 (diff) | |
| download | buildroot-a2b31892a886a5b11bca85ca9e6a689f6f3df9c8.tar.gz buildroot-a2b31892a886a5b11bca85ca9e6a689f6f3df9c8.zip | |
package/u*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files. This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter u in the package directory.
The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/unionfs')
| -rw-r--r-- | package/unionfs/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/unionfs/Config.in b/package/unionfs/Config.in index ece83a5f79..fe03b95f20 100644 --- a/package/unionfs/Config.in +++ b/package/unionfs/Config.in @@ -1,9 +1,9 @@ config BR2_PACKAGE_UNIONFS bool "unionfs (FUSE)" - select BR2_PACKAGE_LIBFUSE depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse depends on BR2_USE_MMU # libfuse depends on !BR2_STATIC_LIBS # libfuse + select BR2_PACKAGE_LIBFUSE help A userspace unionfs implementation. |

