From fb7253d45e22e3dffd3e06739e94ebd4bca2476e Mon Sep 17 00:00:00 2001 From: lukileczo Date: Fri, 19 May 2023 18:09:35 +0200 Subject: [PATCH] sparcv8leon3: fix indentation in makefile JIRA: RTOS-406 --- Makefile.sparcv8leon3 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.sparcv8leon3 b/Makefile.sparcv8leon3 index fad81b8b..52dc45e5 100644 --- a/Makefile.sparcv8leon3 +++ b/Makefile.sparcv8leon3 @@ -29,12 +29,12 @@ LDFLAGS := -z max-page-size=0x200 --gc-sections VADDR_KERNEL_INIT=31000000 ifeq ($(KERNEL), 1) - LDFLAGS += -Tbss=40001800 -Tdata=40001800 --section-start=.rodata=40000000 - STRIP = $(CROSS)strip + LDFLAGS += -Tbss=40001800 -Tdata=40001800 --section-start=.rodata=40000000 + STRIP = $(CROSS)strip else - CFLAGS += -fPIC -fPIE -mno-pic-data-is-text-relative -mpic-register=g6 - LDFLAGS += -q - STRIP = $(CROSS)strip --strip-unneeded -R .rela.text + CFLAGS += -fPIC -fPIE -mno-pic-data-is-text-relative -mpic-register=g6 + LDFLAGS += -q + STRIP = $(CROSS)strip --strip-unneeded -R .rela.text endif CXXFLAGS += $(filter-out -Wstrict-prototypes, $(CFLAGS))