]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix tempfile creation when byte compiling
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 21 Jan 2018 03:12:05 +0000 (19:12 -0800)
committerEli Zaretskii <eliz@gnu.org>
Thu, 15 Nov 2018 14:45:36 +0000 (16:45 +0200)
This improves on the recent fix for master failing to build
on FreeBSD.  Suggested by Stefan Monnier in:
https://lists.gnu.org/r/emacs-devel/2018-01/msg00600.html
* lisp/emacs-lisp/bytecomp.el (byte-compile-file):
Put tempfile next to the target file, as was the original intent.

(cherry picked from commit 64c846738617d1d037eac0cefb6586c04317b0a1)

lisp/emacs-lisp/bytecomp.el

index 68e2fd1d104d5d36ed6ec9d0323c8df95fdb7bd2..bc65f2cfaf064544a80245e2d4c4183d0950d896 100644 (file)
@@ -1938,17 +1938,7 @@ The value is non-nil if there were no errors, nil if errors."
                       ;; parallel bootstrap), it does not risk getting a
                       ;; half-finished file.  (Bug#4196)
                       (tempfile
-                        (if (file-name-absolute-p target-file)
-                            (make-temp-file target-file)
-                          ;; If target-file is relative and includes
-                          ;; leading directories, make-temp-file will
-                          ;; assume those leading directories exist
-                          ;; under temporary-file-directory, which might
-                          ;; not be true.  So strip leading directories
-                          ;; from relative file names before calling
-                          ;; make-temp-file.
-                          (make-temp-file
-                           (file-name-nondirectory target-file))))
+                       (make-temp-file (expand-file-name target-file)))
                       (default-modes (default-file-modes))
                       (temp-modes (logand default-modes #o600))
                       (desired-modes (logand default-modes #o666))