build: remove warning 32 (unused variable) in tools.

(Patch by Adrien Nader!)

Among other files, myocamlbuild_config.ml is built in this directory.
This file defines many variables, most of which are not used and
therefore trigger this warning which is then turned into an error
through -warn-error A.
build: remove warning 32 (unused variable) in tools.

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@14169 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Wojciech Meyer 2013-09-20 00:22:40 +00:00
parent 241585bc83
commit 0f04aeefa1
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ CAMLOPT=$(CAMLOPT_BIN) -nostdlib -I ../stdlib
CAMLLEX=$(CAMLRUN) ../boot/ocamllex
INCLUDES=-I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp \
-I ../driver -I ../toplevel
COMPFLAGS= -w +32..39 -warn-error A $(INCLUDES)
COMPFLAGS= -w +33..39 -warn-error A $(INCLUDES)
LINKFLAGS=$(INCLUDES)
all: ocamldep ocamlprof ocamlcp ocamloptp ocamlmktop ocamlmklib dumpobj \