customize: Rename main.ml to customize_main.ml.

The OCaml compiler isn't happy when two modules have the same name in
different directories.  Since customize/ contains a library of modules
used in other directories, and since those directories may have
main.ml files too, we need to rename 'customize/main.ml' to
'customize/customize_main.ml'.
This commit is contained in:
Richard W.M. Jones
2014-03-25 22:41:19 +00:00
parent 1a4709147a
commit cec31436f8
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ SOURCES = \
firstboot.mli \
hostname.ml \
hostname.mli \
main.ml \
customize_main.ml \
password.ml \
password.mli \
perl_edit.ml \
@@ -87,7 +87,7 @@ ocaml_modules = \
timezone \
customize_cmdline \
customize_run \
main
customize_main
if HAVE_OCAMLOPT
OBJECTS += $(patsubst %,%.cmx,$(ocaml_modules))