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

    Nouveau module Marshal dans stdlib
    
    
    git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1633 
f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
---
 Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index b9c4f63..c727ebf 100644
--- a/Makefile
+++ b/Makefile
@@ -16,14 +16,14 @@ COMPILECMD=(progn \
 
 install:
        @if test "$(EMACSDIR)" = ""; then \
-          dir=`($(EMACS) --batch --eval "(mapcar 'print load-path)") \
-                2>/dev/null | \
-                sed -n -e '/\/site-lisp/s/"//gp'`; \
-          if test "$$dir" = ""; then \
+          set xxx `($(EMACS) --batch --eval "(mapcar 'print load-path)") \
+                   2>/dev/null | \
+                   sed -n -e '/\/site-lisp/s/"//gp'`; \
+          if test "$$2" = ""; then \
             echo "Cannot determine Emacs site-lisp directory"; \
             exit 2; \
           fi; \
-          $(MAKE) EMACSDIR="$$dir" simple-install; \
+          $(MAKE) EMACSDIR="$$2" simple-install; \
         else \
           $(MAKE) simple-install; \
         fi

Reply via email to