mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-25 20:26:34 +00:00
Don't use a string to do the job of a bool
This commit is contained in:
parent
0a19191eb8
commit
bad6428272
@ -63,8 +63,8 @@ config BR2_WGET
|
|||||||
default "wget --passive-ftp"
|
default "wget --passive-ftp"
|
||||||
|
|
||||||
config BR2_TAR_VERBOSITY
|
config BR2_TAR_VERBOSITY
|
||||||
string
|
bool
|
||||||
default "no"
|
default n
|
||||||
|
|
||||||
source "toolchain/Config.in"
|
source "toolchain/Config.in"
|
||||||
|
|
||||||
|
2
Makefile
2
Makefile
@ -35,7 +35,7 @@ ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
|
|||||||
-include $(TOPDIR).config
|
-include $(TOPDIR).config
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(BR2_TAR_VERBOSITY)),"yes")
|
ifeq ($(BR2_TAR_VERBOSITY),y)
|
||||||
TAR_VERBOSITY=v
|
TAR_VERBOSITY=v
|
||||||
else
|
else
|
||||||
TAR_VERBOSITY=
|
TAR_VERBOSITY=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user