]> git.eshelyaron.com Git - emacs.git/commitdiff
* Fix `batch-byte+native-compile' target directory.
authorAndrea Corallo <acorallo@gnu.org>
Sat, 12 Aug 2023 16:42:33 +0000 (18:42 +0200)
committerAndrea Corallo <acorallo@gnu.org>
Sat, 12 Aug 2023 16:51:45 +0000 (18:51 +0200)
* lisp/emacs-lisp/comp.el (batch-native-compile): Don't shadow
`native-compile-target-directory' unless necessary.

lisp/emacs-lisp/comp.el

index bdce4254bf5e6c17fb98fa73e953c7b2fe04e915..0c70789be7125d87fa1f4cadfcbc0709aabf83f3 100644 (file)
@@ -4305,8 +4305,9 @@ last directory in `native-comp-eln-load-path')."
   (comp-ensure-native-compiler)
   (let ((comp-running-batch-compilation t)
         (native-compile-target-directory
-            (if for-tarball
-                (car (last native-comp-eln-load-path)))))
+         (if for-tarball
+             (car (last native-comp-eln-load-path))
+           native-compile-target-directory)))
     (cl-loop for file in command-line-args-left
              if (or (null byte+native-compile)
                     (cl-notany (lambda (re) (string-match re file))