diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-10-18 22:44:35 +0200 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-10-18 22:44:35 +0200 |
commit | e08e9bc40f2c309bf119659a6496759493bd35e1 (patch) | |
tree | 6af60bad731392fafa6317229250ca8ec2692f03 /lisp/emacs-lisp | |
parent | 5d60ea47f6625dc7da6ceb475dc624e33deb198f (diff) | |
download | emacs-e08e9bc40f2c309bf119659a6496759493bd35e1.tar.gz emacs-e08e9bc40f2c309bf119659a6496759493bd35e1.tar.bz2 emacs-e08e9bc40f2c309bf119659a6496759493bd35e1.zip |
Remove modifications to the list of ignored files in source packages
* lisp/emacs-lisp/package-vc.el (package-vc-unpack-1): Remove
'vc-ignore' calls.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package-vc.el | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index c420c5f87a7..83038418529 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -268,13 +268,9 @@ The output is written out into PKG-FILE." (pkg-file (expand-file-name (package--description-file pkg-dir) pkg-dir))) ;; Generate autoloads (package-generate-autoloads name pkg-dir) - (vc-ignore (concat "/" (file-relative-name - (expand-file-name (format "%s-autoloads.el" name)) - default-directory))) ;; Generate package file (package-vc-generate-description-file pkg-desc pkg-file) - (vc-ignore (concat "/" (file-relative-name pkg-file default-directory))) ;; Detect a manual (when (executable-find "install-info") @@ -284,8 +280,7 @@ The output is written out into PKG-FILE." (when (length= texi-files 1) (call-process "install-info" nil nil nil (concat "--dir=" dir-file) - (car texi-files))) - (vc-ignore "/dir")))) + (car texi-files)))))) ;; Update package-alist. (let ((new-desc (package-load-descriptor pkg-dir))) |