diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-06 12:36:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-06 12:36:43 +0000 |
commit | 52d7b2e563b6ea86405963dedf2ba2236d0f6c58 (patch) | |
tree | c6a0adbfb564b8fcc76f95ece9106455150f784d /make-dist | |
parent | 389e8f11274f874eeaba2f34faa9c17556a3be50 (diff) | |
download | emacs-52d7b2e563b6ea86405963dedf2ba2236d0f6c58.tar.gz |
(tempdir): Put subdir msdos into the distribution.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/make-dist b/make-dist index e6c9ed99433..a7fcd6ce11b 100755 --- a/make-dist +++ b/make-dist @@ -158,7 +158,7 @@ echo "Creating subdirectories." # I've removed it from this list. for subdir in lisp lisp/term site-lisp \ src src/m src/s src/bitmaps lib-src oldXMenu \ - etc lock cpp info man shortnames vms; do + etc lock cpp info man msdos shortnames vms; do mkdir ${tempdir}/${subdir} done @@ -242,6 +242,13 @@ echo "Making links to \`lib-src'." rm -f getdate.tab.c y.tab.c y.tab.h rm -f =* TAGS) +echo "Making links to \`msdos'." +(cd msdos + ln ChangeLog emacs.ico emacs.pif ../${tempdir}/msdos + ln mainmake patch1 sed.in[123] ../${tempdir}/msdos + cd ../${tempdir}/msdos + rm -f =*) + echo "Making links to \`oldXMenu'." (cd oldXMenu ln *.c *.h *.in ../${tempdir}/oldXMenu @@ -297,9 +304,7 @@ echo "Making links to \`vms'." echo "Making sure copying notices are all copies of \`etc/COPYING'." rm -f ${tempdir}/etc/COPYING cp etc/COPYING ${tempdir}/etc/COPYING -# I think we're not going to distribute anything in external-lisp, so -# I've removed it from this list. -for subdir in lisp src lib-src info shortnames; do +for subdir in lisp src lib-src info shortnames msdos; do if [ -f ${tempdir}/${subdir}/COPYING ]; then rm ${tempdir}/${subdir}/COPYING fi |