The upcoming Mac OS X 10.11 introduces a security measure thar prohibits
exporting DYLD_LIBRARY_PATH to subshells. This fix removes the quotes
around several program invocation so that they are not called from a
subshell.
define CARGO_TARGET
cargo-$(1): $$(CARGO)
- "$$(CFG_RUSTC)" -V
- "$$(CARGO)" --version
+ $$(CFG_RUSTC) -V
+ $$(CARGO) --version
$$(CARGO) build --target $(1) $$(OPT_FLAG) $$(VERBOSE_FLAG) $$(ARGS)
test-unit-$(1): $$(CARGO)
$(DOC_DIR)/%.html: src/doc/%.md src/doc/header.html src/doc/footer.html
@mkdir -p $(@D)
- "$(CFG_RUSTDOC)" $< -o $(@D) $(DOC_OPTS)
+ $(CFG_RUSTDOC) $< -o $(@D) $(DOC_OPTS)
$(DOC_DIR)/%: src/doc/%
@mkdir -p $(@D)