Makefile: Don't ignore my env vars!

This commit is contained in:
Richard Diamond 2014-04-23 05:48:43 -05:00
parent cfc79313f5
commit 9aded18534
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
RUSTC := rustc RUSTC ?= rustc
BUILDDIR := build BUILDDIR := build
RUSTCFGS := %RUSTCFGS% RUSTCFGS := %RUSTCFGS%
RUSTFLAGS := -O --cfg ndebug $(RUSTCFGS) RUSTFLAGS += -O --cfg ndebug $(RUSTCFGS)
INSTALL_DIR := %PREFIX% INSTALL_DIR := %PREFIX%
OPENSSL_LIB := lib.rs OPENSSL_LIB := lib.rs