From eb1de3f585a4dd40d026a0a4449936cbdf7ae412 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 5 Jun 2026 14:42:58 +0300 Subject: [PATCH] ; 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. --- make-dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-dist b/make-dist index 427274cf249..aa8df7126ee 100755 --- a/make-dist +++ b/make-dist @@ -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