diff options
| author | Peter Korsgaard <peter@korsgaard.com> | 2015-04-28 08:46:25 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-04-28 08:46:25 +0200 |
| commit | 7beb9ed0fd1afafae9356a6297a02d6026d3d0f7 (patch) | |
| tree | b5d0653fb4e446cc68c4ae19add0c6fecb7de39b | |
| parent | a692a251d4d26753142938e48c18d58d11f51e41 (diff) | |
| download | buildroot-7beb9ed0fd1afafae9356a6297a02d6026d3d0f7.tar.gz buildroot-7beb9ed0fd1afafae9356a6297a02d6026d3d0f7.zip | |
python3: move toolchain comment above main option
So suboptions are correctly indented.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | package/python3/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/python3/Config.in b/package/python3/Config.in index e2f9077c4b..f61401e551 100644 --- a/package/python3/Config.in +++ b/package/python3/Config.in @@ -1,3 +1,7 @@ +comment "python3 needs a toolchain w/ wchar, threads" + depends on BR2_USE_MMU + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS + config BR2_PACKAGE_PYTHON3 bool "python3" depends on !BR2_PACKAGE_PYTHON @@ -11,10 +15,6 @@ config BR2_PACKAGE_PYTHON3 http://www.python.org/ -comment "python3 needs a toolchain w/ wchar, threads" - depends on BR2_USE_MMU - depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS - if BR2_PACKAGE_PYTHON3 choice |

