summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-16 04:55:54 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-16 04:55:54 +0000
commitcfcbce51bf81672be3b51ac4a55577c5e3691bbd (patch)
tree8354c41bb9f00c16f9d49fc56b0c0ad714298177 /make-dist
parent39f8ff9571d2552c711dbdf185ff9a62224220c2 (diff)
downloademacs-cfcbce51bf81672be3b51ac4a55577c5e3691bbd.tar.gz
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"
rm -f TAGS =* */=*)
### Move the real-leim directory outside of Emacs proper.
-(cd ${tempparent}; mv ${emacsname}/real-leim ${emacsname}-leim)
+(cd ${tempparent}
+ mkdir ${emacsname}-leim
+ mkdir ${emacsname}-leim/${emacsname}
+ mv ${emacsname}/real-leim ${emacsname}-leim/${emacsname}/leim)
echo "Making links to \`src'"
### Don't distribute =*.[ch] files, or the configured versions of
@@ -549,7 +552,7 @@ if [ "${make_tar}" = yes ]; then
(cd ${tempparent} ; tar cvf - ${emacsname} ) \
| ${default_gzip} \
> ${emacsname}.tar${gzip_extension}
- (cd ${tempparent} ; tar cvf - ${emacsname}-leim ) \
+ (cd ${tempparent}/${emacsname}-leim ; tar cvf - ${emacsname} ) \
| ${default_gzip} \
> ${emacsname}-leim.tar${gzip_extension}
fi