From b63fc468e1e4f178b2dd88d181ce76d2acd01e8b Mon Sep 17 00:00:00 2001 From: Gene Cumm Date: Tue, 14 Jun 2016 06:17:59 -0400 Subject: efi/Makefile: remove effective double "//" During the string substitution, an addtional '/' is added unnecessarily. Signed-off-by: Gene Cumm --- efi/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/efi/Makefile b/efi/Makefile index bbf23f24..d3788d90 100644 --- a/efi/Makefile +++ b/efi/Makefile @@ -18,17 +18,17 @@ include $(MAKEDIR)/efi.mk CFLAGS += -Wno-strict-prototypes CORE_CSRC := $(wildcard $(core)/*.c $(core)/*/*.c $(core)/*/*/*.c) -CORE_COBJ := $(subst $(core),$(OBJ)/../core/,$(patsubst %.c,%.o,$(CORE_CSRC))) +CORE_COBJ := $(subst $(core),$(OBJ)/../core,$(patsubst %.c,%.o,$(CORE_CSRC))) # We don't want to include any of the networking stack or the thread # code since it will be implemented completely differently for EFI. -FILTERED_OBJS:= $(subst $(core),$(OBJ)/../core/,$(patsubst %.c,%.o, \ +FILTERED_OBJS:= $(subst $(core),$(OBJ)/../core,$(patsubst %.c,%.o, \ $(wildcard $(core)/legacynet/*.c) \ $(wildcard $(core)/fs/pxe/*.c) \ $(wildcard $(core)/thread/*.c))) # Don't include unit tests -FILTERED_OBJS += $(subst $(core),$(OBJ)/../core/, \ +FILTERED_OBJS += $(subst $(core),$(OBJ)/../core, \ $(patsubst %.c,%.o,$(shell find $(core) -path "*/tests/*.c" -print))) # Don't include console objects -- cgit 1.2.3-korg