* install.el (install-files): Do not make DEST directory when
authorminakaji <minakaji>
Sat, 23 Jun 2001 05:03:56 +0000 (05:03 +0000)
committerminakaji <minakaji>
Sat, 23 Jun 2001 05:03:56 +0000 (05:03 +0000)
JUST-PRINT is non-nil.

ChangeLog
install.el

index 026f7bb..320f46e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-23  NAKAJIMA Mikio  <minakaji@osaka.email.ne.jp>
+
+       * install.el (install-files): Do not make DEST directory when
+       JUST-PRINT is non-nil.
+
 2001-06-20  Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
 
        * install.el (install-elisp-modules): Do not make DEST directory
index 775c259..a399d7d 100644 (file)
@@ -1,6 +1,6 @@
 ;;; install.el --- Emacs Lisp package install utility
 
-;; Copyright (C) 1996,1997,1998,1999 Free Software Foundation, Inc.
+;; Copyright (C) 1996,1997,1998,1999,2001 Free Software Foundation, Inc.
 
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;; Created: 1996/08/18
@@ -74,7 +74,8 @@
            (princ (format "%s -> %s\n" file dest)))))))
 
 (defun install-files (files src dest &optional move overwrite just-print)
-  (or (file-exists-p dest)
+  (or just-print
+      (file-exists-p dest)
       (make-directory dest t))
   (mapcar
    (function