; Avoid rebuilding Emacs Lisp Intro when building release tarball

* make-dist (info_files): Include "*.png" images, which are used
in the doc/lispintro/ directory, and should be in the tarball.
This makes sure eintr.info will not need to be rebuilt on the
end-users' systems when a release tarball is being built, due to
the fact that PNG files are copied from doc/lispintro/ and are
thus newer than eintr.info that came with the tarball.  We don't
want to force rebuilding Info files when a release tarball is
built because users are not required to have Texinfo installed.
This commit is contained in:
Eli Zaretskii 2026-06-05 14:42:58 +03:00
parent f26f2a832c
commit eb1de3f585

View file

@ -369,7 +369,7 @@ possibly_non_vc_files="
) || exit
if [ $with_info = yes ]; then
info_files="info/dir $(echo info/*.info info/*.txt info/*.jpg)" || exit
info_files="info/dir $(echo info/*.info info/*.txt info/*.jpg info/*.png)" || exit
else
info_files=
fi