diff options
| author | Steven Fackler <[email protected]> | 2014-04-23 12:12:06 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-04-23 12:12:06 -0400 |
| commit | 1fd8efd028ddd1b6c2b47d5fbcd2795918a5a2a2 (patch) | |
| tree | 50734332095275aea8c00b8ac94464b6358e770a | |
| parent | Update for ~[T] changes (diff) | |
| parent | Makefile: Don't ignore my env vars! (diff) | |
| download | rust-openssl-1fd8efd028ddd1b6c2b47d5fbcd2795918a5a2a2.tar.xz rust-openssl-1fd8efd028ddd1b6c2b47d5fbcd2795918a5a2a2.zip | |
Merge pull request #8 from DiamondLovesYou/master
Makefile: Don't ignore my env vars!
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 4ad2d6bb..452b6197 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,7 +1,7 @@ -RUSTC := rustc +RUSTC ?= rustc BUILDDIR := build RUSTCFGS := %RUSTCFGS% -RUSTFLAGS := -O --cfg ndebug $(RUSTCFGS) +RUSTFLAGS += -O --cfg ndebug $(RUSTCFGS) INSTALL_DIR := %PREFIX% OPENSSL_LIB := lib.rs |