From ed450b3079832a4c92d0ba2110e4e9efd35ed339 Mon Sep 17 00:00:00 2001 From: Kovarththanan Rajaratnam Date: Wed, 8 Aug 2007 22:34:39 +0200 Subject: [PATCH] libxml compile fix on Cygwin Hello, I needed to re-arrange the libxml-2.0 library order to make sparse compile on Cygwin. Patch attached. Signed-off-by: Kovarththanan Rajaratnam --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e067945..f07290ea 100644 --- a/Makefile +++ b/Makefile @@ -124,7 +124,7 @@ ctags: ctags.o $(LIBS) $(QUIET_LINK)$(CC) $(LDFLAGS) -o $@ $< $(LIBS) c2xml: c2xml.o $(LIBS) - $(QUIET_LINK)$(CC) $(LDFLAGS) `pkg-config --libs libxml-2.0` -o $@ $< $(LIBS) + $(QUIET_LINK)$(CC) $(LDFLAGS) -o $@ $< $(LIBS) `pkg-config --libs libxml-2.0` $(LIB_FILE): $(LIB_OBJS) $(QUIET_AR)$(AR) rcs $@ $(LIB_OBJS) -- 2.11.4.GIT