summaryrefslogtreecommitdiffstats
path: root/src/OCamlMakefile
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-01-22 17:38:23 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2020-01-25 18:57:12 +0100
commit851d8df9ad31c7e0c169ce49dba8d7e88a162a3d (patch)
tree0c4098227de9cd4b2814dc0ac39276d70d071dfe /src/OCamlMakefile
parent216352f6bb07ddf629da2b71d9395c2e0a974b70 (diff)
downloadperl_checker-851d8df9ad31c7e0c169ce49dba8d7e88a162a3d.tar
perl_checker-851d8df9ad31c7e0c169ce49dba8d7e88a162a3d.tar.gz
perl_checker-851d8df9ad31c7e0c169ce49dba8d7e88a162a3d.tar.bz2
perl_checker-851d8df9ad31c7e0c169ce49dba8d7e88a162a3d.tar.xz
perl_checker-851d8df9ad31c7e0c169ce49dba8d7e88a162a3d.zip
adjust to immutable/safe strings vs bytes split
it was possible to fix to_CamelCase but it was actually unused...
Diffstat (limited to 'src/OCamlMakefile')
-rw-r--r--src/OCamlMakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OCamlMakefile b/src/OCamlMakefile
index ac2cd9c..cc71121 100644
--- a/src/OCamlMakefile
+++ b/src/OCamlMakefile
@@ -142,13 +142,13 @@ NCRESULT := $(addsuffix $(NCSUFFIX), $(RESULT))
TOPRESULT := $(addsuffix $(TOPSUFFIX), $(RESULT))
ifndef OCAMLC
- OCAMLC := ocamlc -g -unsafe-string
+ OCAMLC := ocamlc -g
endif
export OCAMLC
ifndef OCAMLOPT
- OCAMLOPT := ocamlopt -g -unsafe-string
+ OCAMLOPT := ocamlopt -g
endif
export OCAMLOPT