Module: wine Branch: master Commit: ee5a3216edc653b105e1220c16083068c19f9e1c URL: http://source.winehq.org/git/wine.git/?a=commit;h=ee5a3216edc653b105e1220c16...
Author: Alexandre Julliard julliard@winehq.org Date: Wed May 25 10:24:57 2011 +0200
makefiles: Set the module name in stripped modules to the non-stripped name.
---
Maketest.rules.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Maketest.rules.in b/Maketest.rules.in index d31522a..b60986c 100644 --- a/Maketest.rules.in +++ b/Maketest.rules.in @@ -33,7 +33,7 @@ $(MODULE) $(MODULE).so: $(OBJS) Makefile.in $(WINEGCC) $(APPMODE) $(OBJS) -o $@ $(LIBPORT) $(ALL_LIBS)
$(WINETEST_EXE): $(OBJS) Makefile.in - $(WINEGCC) -s $(APPMODE) $(OBJS) -o $@ $(LIBPORT) $(ALL_LIBS) + $(WINEGCC) -s -Wb,-F,$(MODULE) $(APPMODE) $(OBJS) -o $@ $(LIBPORT) $(ALL_LIBS)
$(WINETEST_RES): $(WINETEST_EXE) echo "$(MODULE) TESTRES "$(WINETEST_EXE)"" | $(LDPATH) $(WRC) $(RCFLAGS) -o $@