diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2013-05-29 12:13:22 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2013-05-29 12:13:22 +0200 |
commit | 9fff004ccb4f03495f6f2872af861263eba2def1 (patch) | |
tree | 695fd7a29aa1ad22052397960d903cf2234ccf0b | |
parent | ec55f364751749dfbda1192d3368be771ed5b5a5 (diff) | |
download | mupdf-9fff004ccb4f03495f6f2872af861263eba2def1.tar.xz |
Fix a typo in Makethird where we used $(BUILD) rather than $(build).
-rw-r--r-- | Makethird | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,9 +23,9 @@ V8_DIR := $(wildcard thirdparty/v8*) ifneq "$(V8_DIR)" "" CFLAGS += -I$(V8_DIR)/include -ifeq "$(BUILD)" "release" +ifeq "$(build)" "release" V8LIB_CHOICE := release -else ifeq "$(BUILD)" "profile" +else ifeq "$(build)" "profile" V8LIB_CHOICE := release else V8LIB_CHOICE := debug |