Build without SparseArrays and SuiteSparse

Hi,

I read in the news for of 1.10 that:

" SparseArrays and SuiteSparse are no longer included in the default system image, so the core language no longer contains GPL libraries. However, these libraries are still included alongside the language in the standard binary distribution "

Is there a way to build Julia while completely excluding these librairies (SparseArrays and SuiteSparse) ?

Thank you

Build with:
Make.user

USE_GPL_LIBS := 0

However, there are still some issues to be resolved:
Scheduled build *-NoGPL all failed · Issue #53211 · JuliaLang/julia (github.com)

Does it have to be USE_GPL_LIBS := 0 or USE_GPL_LIBS = 0 is enough?
Thank you