From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sander Eikelenboom Subject: [Mini-os] Fix accidentally removed brace causing a build error. Date: Thu, 12 Mar 2015 19:08:05 +0100 Message-ID: <1426183686-27428-1-git-send-email-linux@eikelenboom.it> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1YW7Ww-0003nw-0w for xen-devel@lists.xenproject.org; Thu, 12 Mar 2015 18:08:22 +0000 List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Ian Campbell Cc: Sander Eikelenboom , Olaf Hering , xen-devel List-Id: xen-devel@lists.xenproject.org Introduced in: commit bd5920cb92e6799bfd64957284a9e2cfe7699039 "mini-os: sort objects in binary archives" Signed-off-by: Sander Eikelenboom --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4