Update lib/Makefile to reference CONFIG_$(PHASE_)UFS instead of CONFIG_$(PHASE_)UFS_SUPPORT for the charset.o build rule, following the rename of SPL_UFS_SUPPORT to SPL_UFS.
Signed-off-by: Balaji Selvanathan <[email protected]> --- Changes in v2: - Newly added in v2 --- lib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile b/lib/Makefile index d0ffabc2b47..807a459fb29 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -147,7 +147,7 @@ else obj-$(CONFIG_$(PHASE_)SPRINTF) += vsprintf.o endif obj-$(CONFIG_$(PHASE_)STRTO) += strto.o -obj-$(CONFIG_$(PHASE_)UFS_SUPPORT) += charset.o +obj-$(CONFIG_$(PHASE_)UFS) += charset.o else # Main U-Boot always uses the full printf support obj-y += vsprintf.o strto.o -- 2.34.1

