]> xenbits.xensource.com Git - people/pauldu/mini-os.git/commitdiff
Fix accidentally removed brace causing a build error.
authorSander Eikelenboom <linux@eikelenboom.it>
Thu, 12 Mar 2015 18:08:05 +0000 (19:08 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Fri, 13 Mar 2015 09:30:17 +0000 (09:30 +0000)
Introduced in:
commit bd5920cb92e6799bfd64957284a9e2cfe7699039
"mini-os: sort objects in binary archives"

Signed-off-by: Sander Eikelenboom <linux@eikelenboom.it>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Makefile

index 3e5d95ea69ba446d7d782a8c808c3745e9980bab..2cb5e51a16d7da06e523e36488610a0727849d72 100644 (file)
--- 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