aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-16 04:55:54 +0000
committerRichard M. Stallman1997-07-16 04:55:54 +0000
commit65fda17c7ab0fd41622fc780fb3bf883fc19a5e0 (patch)
tree8700f2e3aef64b18ea648816dc2c792815db2d4d /make-dist
parente432fc7448459c1bafb67ba13e415134f4125905 (diff)
downloademacs-65fda17c7ab0fd41622fc780fb3bf883fc19a5e0.tar.gz
emacs-65fda17c7ab0fd41622fc780fb3bf883fc19a5e0.zip
Arrange for the leim tar file to unpack in emacs-M.N/leim.
Diffstat (limited to 'make-dist')
-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