Skip *.dylib files in 'loaddefs-generate'
* lisp/emacs-lisp/loaddefs-gen.el (loaddefs-generate): Add .dylib to extensions of files that are skipped. (Bug#74001)
This commit is contained in:
parent
0d8d5f10ff
commit
8e37b53716
1 changed files with 1 additions and 1 deletions
|
@ -591,7 +591,7 @@ instead of just updating them with the new/changed autoloads."
|
|||
;; 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\\|so\\|dll\\|dylib\\)" suf)
|
||||
(push suf tmp)))
|
||||
(concat "\\`[^=.].*" (regexp-opt tmp t) "\\'")))
|
||||
(files (apply #'nconc
|
||||
|
|
Loading…
Add table
Reference in a new issue