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.
This commit is contained in:
parent
bb0bc8bfe5
commit
1e46c2a73c
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue