From: Sander Eikelenboom Date: Thu, 12 Mar 2015 18:08:05 +0000 (+0100) Subject: Fix accidentally removed brace causing a build error. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=edfd5aae6ec5ba7d0a8834a3e9dfe5e69424150a;p=people%2Fliuw%2Flibxenctrl-split%2Fmini-os.git Fix accidentally removed brace causing a build error. Introduced in: commit bd5920cb92e6799bfd64957284a9e2cfe7699039 "mini-os: sort objects in binary archives" Signed-off-by: Sander Eikelenboom Acked-by: Ian Campbell --- diff --git a/Makefile b/Makefile index 3e5d95e..2cb5e51 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,7 @@ ifeq ($(CONFIG_LWIP),y) # lwIP library LWC := $(sort $(shell find $(LWIPDIR)/src -type f -name '*.c')) LWC := $(filter-out %6.c %ip6_addr.c %ethernetif.c, $(LWC)) -LWO := $(patsubst %.c,%.o,$(LWC) +LWO := $(patsubst %.c,%.o,$(LWC)) LWO += $(OBJ_DIR)/lwip-arch.o ifeq ($(CONFIG_NETFRONT),y) LWO += $(OBJ_DIR)/lwip-net.o