* Makefile.common (MINGW_LDFLAGS): Correctly use -L rather than -B here.

This commit is contained in:
Corinna Vinschen 2012-01-09 09:50:44 +00:00
parent a345dc55f9
commit df8c8e18eb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-01-09 Corinna Vinschen <corinna@vinschen.de>
* Makefile.common (MINGW_LDFLAGS): Correctly use -L rather than -B here.
2011-04-19 Corinna Vinschen <corinna@vinschen.de>
* COPYING: Replace with the GPLv3 definition.

View File

@ -103,7 +103,7 @@ endif
MINGW_INCLUDES:=${mingw_include} $(w32api_include)
MINGW_CFLAGS:=-mno-cygwin $(MINGW_INCLUDES)
MINGW_CXXFLAGS:=${filter-out $(newlib_source)/%,$(CXXFLAGS)} -mno-cygwin $(MINGW_INCLUDES)
MINGW_LDFLAGS:=-B${mingw_build} -B${mingw_build}/mingwex
MINGW_LDFLAGS:=-L${mingw_build} -L${mingw_build}/mingwex
GCC_DEFAULT_OPTIONS:=$(CFLAGS_COMMON) $(CFLAGS_CONFIG) $(INCLUDES)