From: Andrea Corallo Date: Sat, 16 Oct 2021 08:55:43 +0000 (+0200) Subject: * lisp/emacs-lisp/comp.el (comp-trampoline-compile): Fix target dir. X-Git-Tag: emacs-28.0.90~279 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2971a6890f562dccc2182dd1f802fa47333d496c;p=emacs.git * lisp/emacs-lisp/comp.el (comp-trampoline-compile): Fix target dir. --- diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 7b5c5ad44f7..0a105052570 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -3790,7 +3790,8 @@ Return the trampoline if found or nil otherwise." form nil (cl-loop for dir in (if native-compile-target-directory - (list native-compile-target-directory) + (list (expand-file-name comp-native-version-dir + native-compile-target-directory)) (comp-eln-load-path-eff)) for f = (expand-file-name (comp-trampoline-filename subr-name)