Skip to content

Commit

Permalink
[fix] Makefile.bld: no need to export BUILD_XXX, may throw warnings w…
Browse files Browse the repository at this point in the history
…hen generating XXX.make
  • Loading branch information
Frederic Ye committed Oct 31, 2012
1 parent 1d9609b commit 6fe9466
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/build/Makefile.bld
Expand Up @@ -60,10 +60,10 @@ distclean: clean
-include $(BUILD_DIR)/build_libs.make
-include $(BUILD_DIR)/build_tools.make

export BUILD_VARS ?= $(BLDDIR)/build_vars.ml
export BUILD_RULES := $(BLDDIR)/build_rules.ml $(BUILD_RULES)
export BUILD_LIBS := $(BLDDIR)/build_libs $(BUILD_LIBS)
export BUILD_TOOLS := $(BLDDIR)/build_tools $(BUILD_TOOLS)
BUILD_VARS ?= $(BLDDIR)/build_vars.ml
BUILD_RULES := $(BLDDIR)/build_rules.ml $(BUILD_RULES)
BUILD_LIBS := $(BLDDIR)/build_libs $(BUILD_LIBS)
BUILD_TOOLS := $(BLDDIR)/build_tools $(BUILD_TOOLS)

MYOCAMLBUILD_SOURCES = \
$(BLDDIR)/gen_myocamlbuild.sh \
Expand Down

0 comments on commit 6fe9466

Please sign in to comment.