diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-12-01 06:58:46 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-12-01 06:58:46 -0800 |
| commit | c6e934f44797fd482d79f7be481cac12a9804046 (patch) | |
| tree | 89122aa0456e517d3791eed46127a6628ef36588 | |
| parent | c470184c20167f9f41613d5f4a1d75840e0f5c3a (diff) | |
*Actually* fix `make install` with rlibs
Turns out that we only want to install the target rlibs, not the host rlibs. I had it backwards the first time, then mixed up the second time, but this time should get it right. There's no need for host rlib files because none of them are needed at runtime.
| -rw-r--r-- | mk/install.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mk/install.mk b/mk/install.mk index 5bfa01e96d5..0cd6709e72c 100644 --- a/mk/install.mk +++ b/mk/install.mk @@ -148,11 +148,8 @@ install-host: $(CSREQ$(ISTAGE)_T_$(CFG_BUILD_)_H_$(CFG_BUILD_)) $(Q)$(call INSTALL,$(HB2),$(PHB),rustpkg$(X_$(CFG_BUILD))) $(Q)$(call INSTALL,$(HB2),$(PHB),rustdoc$(X_$(CFG_BUILD))) $(Q)$(call INSTALL_LIB,$(STDLIB_GLOB_$(CFG_BUILD))) - $(Q)$(call INSTALL_LIB,$(STDLIB_RGLOB_$(CFG_BUILD))) $(Q)$(call INSTALL_LIB,$(EXTRALIB_GLOB_$(CFG_BUILD))) - $(Q)$(call INSTALL_LIB,$(EXTRALIB_RGLOB_$(CFG_BUILD))) $(Q)$(call INSTALL_LIB,$(LIBRUSTUV_GLOB_$(CFG_BUILD))) - $(Q)$(call INSTALL_LIB,$(LIBRUSTUV_RGLOB_$(CFG_BUILD))) $(Q)$(call INSTALL_LIB,$(LIBRUSTC_GLOB_$(CFG_BUILD))) $(Q)$(call INSTALL_LIB,$(LIBSYNTAX_GLOB_$(CFG_BUILD))) $(Q)$(call INSTALL_LIB,$(LIBRUSTPKG_GLOB_$(CFG_BUILD))) |
