From: Ben Hutchings Date: Sat, 12 Apr 2008 16:09:08 +0000 (+0000) Subject: Fixed order of linker arguments. X-Git-Tag: 1.2.3~16 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=videolink.git;a=commitdiff_plain;h=5586e3330c5c904a921dd4a9fb55cfa27a2cab9f Fixed order of linker arguments. --- diff --git a/Makefile b/Makefile index 96be00e..3226da6 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ sources_using_moz_unstable := \ link_iterator.cpp null_prompt_service.cpp style_sheets.cpp videolink.cpp videolink : $(cxxsources:%.cpp=.objs/%.o) $(csources:%.c=.objs/%.o) - $(CXX) $(LDFLAGS) -o $@ $^ + $(CXX) $^ $(LDFLAGS) -o $@ clean : rm -rf .objs