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.

ocamldoc/Makefile.best_ocamldoc: remove useless ./ prefixes

The ./ prefix in front of $(OCAMLDOC) and $(OCAMLDOC_OPT) is not useful
since the definitions of these variables are already prefixed with
$(ROOTDIR).

+4 -4
+4 -4
ocamldoc/Makefile.best_ocamldoc
··· 19 19 ifeq "$(TARGET)" "$(HOST)" 20 20 ifeq "$(SUPPORTS_SHARED_LIBRARIES)" "true" 21 21 OCAMLDOC_RUN_BYTE = $(NEW_OCAMLRUN) -I $(ROOTDIR)/otherlibs/unix \ 22 - -I $(ROOTDIR)/otherlibs/str ./$(OCAMLDOC) 22 + -I $(ROOTDIR)/otherlibs/str $(OCAMLDOC) 23 23 else 24 24 # if shared-libraries are not supported, unix.cma and str.cma 25 25 # are compiled with -custom, so ocamldoc also uses -custom, 26 26 # and (ocamlrun ocamldoc) does not work. 27 - OCAMLDOC_RUN_BYTE = ./$(OCAMLDOC) 27 + OCAMLDOC_RUN_BYTE = $(OCAMLDOC) 28 28 endif 29 29 else 30 - OCAMLDOC_RUN_BYTE = $(NEW_OCAMLRUN) ./$(OCAMLDOC) 30 + OCAMLDOC_RUN_BYTE = $(NEW_OCAMLRUN) $(OCAMLDOC) 31 31 endif 32 32 33 - OCAMLDOC_RUN_OPT = ./$(OCAMLDOC_OPT) 33 + OCAMLDOC_RUN_OPT = $(OCAMLDOC_OPT) 34 34 35 35 ifeq "$(wildcard $(OCAMLDOC_OPT))" "" 36 36 OCAMLDOC_RUN = $(OCAMLDOC_RUN_BYTE)