aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmake-dist7
1 files changed, 5 insertions, 2 deletions
diff --git a/make-dist b/make-dist
index 42875f97fb3..e4df2f06e48 100755
--- a/make-dist
+++ b/make-dist
@@ -315,7 +315,10 @@ echo "Making links to \`leim' and its subdirectories for the LEIM distribution"
315 rm -f TAGS =* */=*) 315 rm -f TAGS =* */=*)
316 316
317### Move the real-leim directory outside of Emacs proper. 317### Move the real-leim directory outside of Emacs proper.
318(cd ${tempparent}; mv ${emacsname}/real-leim ${emacsname}-leim) 318(cd ${tempparent}
319 mkdir ${emacsname}-leim
320 mkdir ${emacsname}-leim/${emacsname}
321 mv ${emacsname}/real-leim ${emacsname}-leim/${emacsname}/leim)
319 322
320echo "Making links to \`src'" 323echo "Making links to \`src'"
321### Don't distribute =*.[ch] files, or the configured versions of 324### Don't distribute =*.[ch] files, or the configured versions of
@@ -549,7 +552,7 @@ if [ "${make_tar}" = yes ]; then
549 (cd ${tempparent} ; tar cvf - ${emacsname} ) \ 552 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
550 | ${default_gzip} \ 553 | ${default_gzip} \
551 > ${emacsname}.tar${gzip_extension} 554 > ${emacsname}.tar${gzip_extension}
552 (cd ${tempparent} ; tar cvf - ${emacsname}-leim ) \ 555 (cd ${tempparent}/${emacsname}-leim ; tar cvf - ${emacsname} ) \
553 | ${default_gzip} \ 556 | ${default_gzip} \
554 > ${emacsname}-leim.tar${gzip_extension} 557 > ${emacsname}-leim.tar${gzip_extension}
555fi 558fi