From ed91f8890f907ff6afa1d4ff06d0c56b1f1d5618 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Tue, 19 Nov 2024 17:15:30 +0000 Subject: [PATCH] Replace tabs with spaces in Makefile Tabs were introduced in a place where spaces are being used for alignment. Correct this. Signed-off-by: David Horstmann --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index b48d93631..69d4dc6d8 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -254,7 +254,7 @@ LOCAL_CRYPTO_CFLAGS = $(patsubst -I./include, -I../../tests/include, $(patsubst LOCAL_CRYPTO_LDFLAGS = $(patsubst -L../library, -L../../library, \ $(patsubst -L../tests/%, -L../../tests/%, \ $(patsubst ./src/%,../../tests/src/%, \ - $(patsubst ../framework/tests/src/%,../../framework/tests/src/%, \ + $(patsubst ../framework/tests/src/%,../../framework/tests/src/%, \ $(LOCAL_LDFLAGS))))) $(CRYPTO_BINARIES): %$(EXEXT): %.c $(MBEDLIBS) $(TEST_OBJS_DEPS) $(MBEDTLS_TEST_OBJS) echo " CC $<"