Created
July 20, 2010 19:00
-
-
Save pcwalton/483381 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: local/docs/Makefile | |
=================================================================== | |
--- local.orig/docs/Makefile 2010-06-09 12:35:28.000000000 -0700 | |
+++ local/docs/Makefile 2010-07-20 11:37:09.000000000 -0700 | |
@@ -115,8 +115,10 @@ | |
$(Verb) $(MAKE) -C $(LEVEL)/bindings/ocaml ocamldoc | |
$(Verb) $(MKDIR) $(PROJ_OBJ_DIR)/ocamldoc/html | |
$(Verb) \ | |
- $(OCAMLDOC) -d $(PROJ_OBJ_DIR)/ocamldoc/html -sort -colorize-code -html \ | |
- `$(FIND) $(LEVEL)/bindings/ocaml -name "*.odoc" -exec echo -load '{}' ';'` | |
+ $(FIND) $(LEVEL)/bindings/ocaml -path "$(BuildMode)/*.odoc" -exec \ | |
+ echo -load '{}' ';' | \ | |
+ xargs $(OCAMLDOC) -d $(PROJ_OBJ_DIR)/ocamldoc/html -sort -colorize_code \ | |
+ -html | |
uninstall-local:: | |
$(Echo) Uninstalling Documentation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment