[Omake] 0.9.9 mk/make_config has a bunch excessive quotes
Erick Tryzelaar
erickt at dslextreme.com
Tue Jul 4 09:18:43 PDT 2006
Some other stuff as well. It appears that these lines are repeated twice:
#
# The OCAMLDEP_MODULES_ENABLED variable specifies whether to use the
-modules
# option to ocamldep. Dependency analysis is much better with this option,
# but it is also a little slower. Also, the -modules option is not yet
available
# with the standard OCaml distribution. OMake includes a patched ocamldep,
# in case you want to use it anyway.
#
OCAMLDEP_MODULES_ENABLED = $(and $(OCAMLDEP_MODULES_AVAILABLE),
$(OCAMLDEP_MODULES_ENABLED))
#
# The OCAMLDEP_MODULES_ENABLED variable specifies whether to use the
-modules
# option to ocamldep. Dependency analysis is much better with this option,
# but it is also a little slower. Also, the -modules option is not yet
available
# with the standard OCaml distribution. OMake includes a patched ocamldep,
# in case you want to use it anyway.
#
OCAMLDEP_MODULES_ENABLED = $(and $(OCAMLDEP_MODULES_AVAILABLE),
$(OCAMLDEP_MODULES_ENABLED))
Also, these lines appear to have lost the $dir lines:
PREFIX = $$'$(PREFIX)'
BINDIR = $$"$(BINDIR)"
LIBDIR = $$"$(LIBDIR)"
MANDIR = $$"$(MANDIR)"
In 0.9.8, they're this:
PREFIX = $$(dir $$'$(PREFIX)')
BINDIR = $$(dir $$"$(BINDIR)")
LIBDIR = $$(dir $$"$(LIBDIR)")
MANDIR = $$(dir $$"$(MANDIR)")
Was this done on purpose? The other "dir" calls in 0.9.9 are still there.
More information about the Omake
mailing list