summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1997-08-26 15:21:16 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1997-08-26 15:21:16 +0000
commit0ee4feb9bdd5d2fdbeec6f74a179fabc9a0b0ffc (patch)
tree50d38bd5e4ad4675ad4221649b18ee0fe4172722
parentb3a5477df08cd49f0ca62a577973cfe134dd2e3a (diff)
Creer EMACSDIR si non existant
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1691 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--emacs/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/Makefile b/emacs/Makefile
index c727ebf62..56ee612a3 100644
--- a/emacs/Makefile
+++ b/emacs/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)'