mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
package/jpeg: properly indent in menuconfig
Since there is a variable definition between the definition of BR2_PACKAGE_JPEG and the choice depending on it, the choice is not indented bewlo the "jpeg support" prompt, like we like to have: [*] jpeg support jpeg variant (jpeg-turbo) ---> Move the BR2_PACKAGE_JPEG right before the choice (really, move BR2_PACKAGE_JPEG_SIMD_SUPPORT before BR2_PACKAGE_JPEG, but diff finds the move of BR2_PACKAGE_JPEG is smaller to display): [*] jpeg support jpeg variant (jpeg-turbo) ---> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
f41056ec4b
commit
7a48ac725f
@ -1,8 +1,3 @@
|
|||||||
config BR2_PACKAGE_JPEG
|
|
||||||
bool "jpeg support"
|
|
||||||
help
|
|
||||||
Select the desired JPEG library provider.
|
|
||||||
|
|
||||||
# jpeg-turbo has simd support for some architectures
|
# jpeg-turbo has simd support for some architectures
|
||||||
config BR2_PACKAGE_JPEG_SIMD_SUPPORT
|
config BR2_PACKAGE_JPEG_SIMD_SUPPORT
|
||||||
bool
|
bool
|
||||||
@ -11,6 +6,11 @@ config BR2_PACKAGE_JPEG_SIMD_SUPPORT
|
|||||||
default y if BR2_POWERPC_CPU_HAS_ALTIVEC
|
default y if BR2_POWERPC_CPU_HAS_ALTIVEC
|
||||||
default y if BR2_aarch64 || BR2_aarch64_be
|
default y if BR2_aarch64 || BR2_aarch64_be
|
||||||
|
|
||||||
|
config BR2_PACKAGE_JPEG
|
||||||
|
bool "jpeg support"
|
||||||
|
help
|
||||||
|
Select the desired JPEG library provider.
|
||||||
|
|
||||||
if BR2_PACKAGE_JPEG
|
if BR2_PACKAGE_JPEG
|
||||||
|
|
||||||
choice
|
choice
|
||||||
|
Loading…
x
Reference in New Issue
Block a user