aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gehring <[email protected]>2014-07-06 11:56:57 +0200
committerMichael Gehring <[email protected]>2014-07-06 11:59:01 +0200
commit5ed462643c11240aacf63001af60f0c71e920988 (patch)
treeed7a35d5348ee78f30d548e69fc400d089dbb85e
parentMerge pull request #24 from chris-morgan/patch-2 (diff)
downloadrust-openssl-5ed462643c11240aacf63001af60f0c71e920988.tar.xz
rust-openssl-5ed462643c11240aacf63001af60f0c71e920988.zip
--crate-file-name -> --print-file-name
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index ec916725..62f2e7b5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -5,8 +5,8 @@ RUSTFLAGS += -O --cfg ndebug $(RUSTCFGS)
INSTALL_DIR := %PREFIX%
OPENSSL_LIB := lib.rs
-OPENSSL := $(foreach file,$(shell $(RUSTC) --crate-file-name $(OPENSSL_LIB)),$(BUILDDIR)/$(file))
-OPENSSL_TEST := $(BUILDDIR)/$(shell $(RUSTC) --test --crate-file-name $(OPENSSL_LIB))
+OPENSSL := $(foreach file,$(shell $(RUSTC) --print-file-name $(OPENSSL_LIB)),$(BUILDDIR)/$(file))
+OPENSSL_TEST := $(BUILDDIR)/$(shell $(RUSTC) --test --print-file-name $(OPENSSL_LIB))
all: $(OPENSSL)