The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use implicit names when installing ocamldoc

The ocamldoc binaries were installed using a relative path. They're the
only binaries installed that way - switch them to use an implicit path,
as it's easier to make an implicit path subsequently explicitly relative
if needed than vice versa.

+2 -2
+2 -2
Makefile
··· 2913 2913 done 2914 2914 ifeq "$(build_ocamldoc)" "true" 2915 2915 $(MKDIR) "$(INSTALL_LIBDIR)/ocamldoc" 2916 - $(INSTALL_PROG) $(OCAMLDOC) "$(INSTALL_BINDIR)" 2916 + $(INSTALL_PROG) ocamldoc/ocamldoc$(EXE) "$(INSTALL_BINDIR)" 2917 2917 $(INSTALL_DATA) \ 2918 2918 ocamldoc/ocamldoc.hva ocamldoc/*.cmi ocamldoc/odoc_info.cma \ 2919 2919 ocamldoc/META \ ··· 3012 3012 $(ocamlopt_CMO_FILES) \ 3013 3013 "$(INSTALL_COMPLIBDIR)" 3014 3014 ifeq "$(build_ocamldoc)" "true" 3015 - $(INSTALL_PROG) $(OCAMLDOC_OPT) "$(INSTALL_BINDIR)" 3015 + $(INSTALL_PROG) ocamldoc/ocamldoc.opt$(EXE) "$(INSTALL_BINDIR)" 3016 3016 $(INSTALL_DATA) \ 3017 3017 ocamldoc/*.cmx ocamldoc/odoc_info.$(A) \ 3018 3018 ocamldoc/odoc_info.cmxa \