From 75a0523275d2ea97ec1eaa58ee4d58cd1f8c203f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Proust?= Date: Fri, 21 Feb 2014 12:57:50 +0000 Subject: [PATCH] build: do not -linkall --- META | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/META b/META index 0bbde68..4990840 100644 --- a/META +++ b/META @@ -1,5 +1,5 @@ name = "o9p" -version = "0.4.1" +version = "0.4.2" description = "9P library implementation in OCaml" requires = "unix, str" archive(byte) = "o9p.cma" diff --git a/Makefile b/Makefile index 07a9991..6951b26 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ uninstall: $(OCAMLFIND) remove $(NAME) $(LIB): $(LIBCMI) $(LIBOBJ) - $(OCAMLFIND) $(OCAMLC) -a -o $@ -package "$(REQUIRES)" -linkpkg $(LIBOBJ) + $(OCAMLFIND) $(OCAMLC) -a -o $@ -package "$(REQUIRES)" $(LIBOBJ) $(LIBX): $(LIBCMI) $(LIBXOBJ) $(OCAMLFIND) $(OCAMLOPT) -a -o $@ -package "$(REQUIRES)" $(LIBXOBJ)