[syslinux:master] efi/Makefile: remove effective double "//"

syslinux-bot for Gene Cumm gene.cumm at gmail.com
Tue Jun 14 03:21:04 PDT 2016


Commit-ID:  b63fc468e1e4f178b2dd88d181ce76d2acd01e8b
Gitweb:     http://www.syslinux.org/commit/b63fc468e1e4f178b2dd88d181ce76d2acd01e8b
Author:     Gene Cumm <gene.cumm at gmail.com>
AuthorDate: Tue, 14 Jun 2016 06:17:59 -0400
Committer:  Gene Cumm <gene.cumm at gmail.com>
CommitDate: Tue, 14 Jun 2016 06:17:59 -0400

efi/Makefile: remove effective double "//"

During the string substitution, an addtional '/' is added unnecessarily.

Signed-off-by: Gene Cumm <gene.cumm at gmail.com>

---
 efi/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/efi/Makefile b/efi/Makefile
index bbf23f2..d3788d9 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


More information about the Syslinux-commits mailing list