diff options
author | Andrea Corallo <akrl@sdf.org> | 2019-12-24 20:48:49 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-01-01 11:38:17 +0100 |
commit | 4beb850efb99b881fb8b648ad7bb43c6539a2431 (patch) | |
tree | d32cbcbd216597c3d883c4ecd6fa130c66448727 /lisp/emacs-lisp | |
parent | 5f63ac26ccc18bcf9e364b74af4424f9e3677cf8 (diff) | |
download | emacs-4beb850efb99b881fb8b648ad7bb43c6539a2431.tar.gz emacs-4beb850efb99b881fb8b648ad7bb43c6539a2431.tar.bz2 emacs-4beb850efb99b881fb8b648ad7bb43c6539a2431.zip |
add native support to the build system
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 785e350e0e5..53d353858b3 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -1045,7 +1045,7 @@ write its autoloads into the specified file instead." ;; we don't want to depend on whether Emacs was ;; built with or without modules support, nor ;; what is the suffix for the underlying OS. - (unless (string-match "\\.\\(elc\\|so\\|dll\\)" suf) + (unless (string-match "\\.\\(elc\\|eln\\|so\\|dll\\)" suf) (push suf tmp))) (concat "^[^=.].*" (regexp-opt tmp t) "\\'"))) (files (apply #'nconc |