From a0d7a8518f2a47855512e831b24c584c661aa4af Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Sun, 25 Oct 2009 09:07:27 -0700 Subject: makefile: move EXTRA_LIBS to be after CONTRIB_LIBS (fix MinGW tiles build) Signed-off-by: Steven Noonan --- crawl-ref/source/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/makefile') diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile index e291a6915d..22856a4385 100644 --- a/crawl-ref/source/makefile +++ b/crawl-ref/source/makefile @@ -540,7 +540,7 @@ CONTRIB_LIBS += $(LIBLUA) $(LIBSQLITE) EXTRA_OBJECTS += version.o -LIBS += $(EXTRA_LIBS) $(CONTRIB_LIBS) +LIBS += $(CONTRIB_LIBS) $(EXTRA_LIBS) GAME_DEPENDS := $(DESTTILEFILES) $(OBJECTS) $(EXTRA_OBJECTS) $(CONTRIB_LIBS) SRC_PKG_BASE := stone_soup SRC_VERSION := $(shell git describe --tags --long) -- cgit v1.2.3-54-g00ecf