search for: 0e317b2

Displaying 2 results from an estimated 2 matches for "0e317b2".

Did you mean: 0.3172
2014 Mar 04
2
[PATCH] Remove two more files that are generated by configure
--- mllib/Makefile.am | 2 +- src/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mllib/Makefile.am b/mllib/Makefile.am index 0e317b2..ec624c9 100644 --- a/mllib/Makefile.am +++ b/mllib/Makefile.am @@ -18,7 +18,7 @@ include $(top_srcdir)/subdir-rules.mk EXTRA_DIST = \ - $(SOURCES) + $(filter-out config.ml.in,$(SOURCES)) CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o diff --git a/src/Makefile.am b/src/Makefile.am index 10f5...
2014 Mar 03
7
[PATCH 1/4] More fixes for situations where ocamlopt is not available
...nks to Olaf Hering) --- mllib/Makefile.am | 2 +- ocaml/Makefile.am | 7 ++++++- ocaml/examples/Makefile.am | 11 ++++------- ocaml/run-bindtests | 2 ++ 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/mllib/Makefile.am b/mllib/Makefile.am index 2e35d1e..0e317b2 100644 --- a/mllib/Makefile.am +++ b/mllib/Makefile.am @@ -176,7 +176,7 @@ common_utils_tests: common_gettext.cmx common_utils.cmx common_utils_tests.cmx else common_utils_tests: common_gettext.cmo common_utils.cmo common_utils_tests.cmo $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) \ - mlguestfs.cma -l...