branch: externals/caml
commit bf92fedd815be0cb9ac8079b035ad281d1c72600
Author: Xavier Leroy <[email protected]>
Commit: Xavier Leroy <[email protected]>

    Creer EMACSDIR si non existant
    
    
    git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1691 
f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
---
 Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index c727ebf..56ee612 100644
--- a/Makefile
+++ b/Makefile
@@ -30,6 +30,7 @@ install:
 
 simple-install:
        @echo "Installing in $(EMACSDIR)..."
+       if test -d $(EMACSDIR); then : ; else mkdir -p $(EMACSDIR); fi
        cp $(FILES) $(EMACSDIR)
        cd $(EMACSDIR); $(EMACS) --batch --eval '$(COMPILECMD)'
 

Reply via email to