diff options
| author | Simon Glass <[email protected]> | 2024-09-29 19:49:50 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-11 11:44:48 -0600 |
| commit | 1d6132e2a2b1217567b88ddd6d11662afd4001df (patch) | |
| tree | 08b4de0651659ceddf2b3e4d6f23140437c6315d /lib/crypto | |
| parent | f38956a687c42db8d9736e09df2d68705369950e (diff) | |
global: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD
Complete this rename for all directories outside arch/ board/ drivers/
and include/
Use the new symbol to refer to any 'SPL' build, including TPL and VPL
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'lib/crypto')
| -rw-r--r-- | lib/crypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/crypto/Makefile b/lib/crypto/Makefile index bec1bc95a65..3259c951241 100644 --- a/lib/crypto/Makefile +++ b/lib/crypto/Makefile @@ -18,12 +18,12 @@ rsa_public_key-y := \ rsa_helper.o $(obj)/rsapubkey.asn1.o: $(obj)/rsapubkey.asn1.c $(obj)/rsapubkey.asn1.h -ifdef CONFIG_SPL_BUILD +ifdef CONFIG_XPL_BUILD CFLAGS_rsapubkey.asn1.o += -I$(obj) endif $(obj)/rsa_helper.o: $(obj)/rsapubkey.asn1.h -ifdef CONFIG_SPL_BUILD +ifdef CONFIG_XPL_BUILD CFLAGS_rsa_helper.o += -I$(obj) endif |
