From 1e46c2a73c08a844baa37956dbfb402cb802f441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwena=EBl=20Delaval?= Date: Wed, 6 Jun 2012 15:55:23 +0200 Subject: [PATCH] Makefile : removed target "all" from target "install" On some systems, the targets "all" and "install" must be made with different rights. Then "all" cannot be a dependendy of "install", especially since ocamlbuild try to read/modify some files even if there is no compilation to perform. --- compiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/Makefile b/compiler/Makefile index a78dab9..7dbc9bd 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -38,7 +38,7 @@ else $(OCAMLBUILD) $(COMPILER).p.native endif -install: all +install: $(INSTALL) -d $(INSTALL_BINDIR) $(INSTALL) $(COMPILER).$(TARGET) $(INSTALL_BINDIR)/$(COMPILER) ifeq ($(ENABLE_SIMULATOR), yes)