Module: wine Branch: master Commit: c8ada1fc0663f77f3790babc51c3872ed7d7a4cd URL: http://source.winehq.org/git/wine.git/?a=commit;h=c8ada1fc0663f77f3790babc51...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Apr 9 15:25:56 2013 +0200
makefiles: Don't link against libport in the tests.
---
Maketest.rules.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Maketest.rules.in b/Maketest.rules.in index 828c375..4ee50a0 100644 --- a/Maketest.rules.in +++ b/Maketest.rules.in @@ -30,10 +30,10 @@ MAKEDEPFLAGS = -xo -xcross.o all: $(TESTPROGRAM) $(WINETEST_RES)
$(MODULE) $(MODULE).so: $(OBJS) Makefile.in - $(WINEGCC) $(APPMODE) $(OBJS) -o $@ $(LIBPORT) $(ALL_LIBS) + $(WINEGCC) $(APPMODE) $(OBJS) -o $@ $(ALL_LIBS)
$(WINETEST_EXE): $(OBJS) Makefile.in - $(WINEGCC) -s -Wb,-F,$(MODULE) $(APPMODE) $(OBJS) -o $@ $(LIBPORT) $(ALL_LIBS) + $(WINEGCC) -s -Wb,-F,$(MODULE) $(APPMODE) $(OBJS) -o $@ $(ALL_LIBS)
$(WINETEST_RES): $(WINETEST_EXE) echo "$(MODULE) TESTRES "$(WINETEST_EXE)"" | $(LDPATH) $(WRC) $(RCFLAGS) -o $@