Skip to content

Commit

Permalink
Install libgcc_s*.dll and friends to $(build_bindir), not $(build_lib…
Browse files Browse the repository at this point in the history
…dir)
  • Loading branch information
staticfloat committed Feb 8, 2014
1 parent 47b5d76 commit a5cbd73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ endif

ifeq ($(OS),WINNT)
define std_dll
debug release: | $$(build_libdir)/lib$(1).dll
$$(build_libdir)/lib$(1).dll: | $$(build_libdir)
debug release: | $$(build_bindir)/lib$(1).dll
$$(build_bindir)/lib$(1).dll: | $$(build_bindir)
ifeq ($$(BUILD_OS),$$(OS))
cp $$(call pathsearch,lib$(1).dll,$$(PATH)) $$(build_libdir) ;
cp $$(call pathsearch,lib$(1).dll,$$(PATH)) $$(build_bindir) ;
else
cp $$(call wine_pathsearch,lib$(1).dll,$$(STD_LIB_PATH)) $$(build_libdir) ;
cp $$(call wine_pathsearch,lib$(1).dll,$$(STD_LIB_PATH)) $$(build_bindir) ;
endif
JL_LIBS += $(1)
endef
Expand Down

0 comments on commit a5cbd73

Please sign in to comment.