diff options
author | Sébastien Hinderer <Sebastien.Hinderer@inria.fr> | 2022-05-19 17:09:51 +0200 |
---|---|---|
committer | Sébastien Hinderer <Sebastien.Hinderer@inria.fr> | 2022-08-25 10:27:34 +0200 |
commit | dc41b0547a8c008a059463a782f6e2873bc9531d (patch) | |
tree | 5ae806d3039873cfe5c2cd5eb6c6fcab7f68dc68 /lex/Makefile | |
parent | 3b7fff2baf417c50cef1a522225285063aa009ee (diff) | |
download | ocaml-dc41b0547a8c008a059463a782f6e2873bc9531d.tar.gz |
Cleanup the build of lex/ocamllex (remove superfluous -strict-sequence flag)
When building the bytecode version of ocamllex, the -strict-sequence flag
was passed twice. This commit removes one of its occurrences.
Diffstat (limited to 'lex/Makefile')
-rw-r--r-- | lex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lex/Makefile b/lex/Makefile index 2455a74b58..94847b2976 100644 --- a/lex/Makefile +++ b/lex/Makefile @@ -30,7 +30,7 @@ include $(ROOTDIR)/Makefile.common OCAMLYACCFLAGS = -v CAMLC = $(BOOT_OCAMLC) $(BOOT_STDLIBFLAGS) \ - -use-prims $(ROOTDIR)/runtime/primitives -strict-sequence + -use-prims $(ROOTDIR)/runtime/primitives CAMLOPT = $(OCAMLRUN) $(ROOTDIR)/ocamlopt$(EXE) $(STDLIBFLAGS) COMPFLAGS = -g -absname -w +a-4-9-41-42-44-45-48 -warn-error +A \ -safe-string -strict-sequence -strict-formats -bin-annot |