Bug 1208566 - emit proper dependencies when compiling Rust sources; r=mshal

This commit is contained in:
Nathan Froyd 2015-12-16 12:58:18 -08:00 коммит произвёл Ralph Giles
Родитель 241c3e6e6f
Коммит aa7ce205e6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -945,7 +945,7 @@ ifdef MOZ_RUST
# in the target's LIBS.
$(RSOBJS):
$(REPORT_BUILD)
$(RUSTC) $(RUSTFLAGS) --crate-type staticlib -o $(call mk_libname,$<) $(_VPATH_SRCS)
$(RUSTC) $(RUSTFLAGS) --crate-type staticlib --emit dep-info=$(MDDEPDIR)/$(call mk_libname,$<).pp,link=$(call mk_libname,$<) $(_VPATH_SRCS)
endif
$(SOBJS):