aboutsummaryrefslogtreecommitdiffstats
path: root/make-dist
diff options
context:
space:
mode:
authorEli Zaretskii2011-10-31 19:37:39 +0200
committerEli Zaretskii2011-10-31 19:37:39 +0200
commit0bd3cb7b2f44639e1da2245b086cedeabbfe46cf (patch)
tree9533c1779407e6d76d1a447e6de2522bb584788e /make-dist
parent08e1d82c8818959ce2885519fe138172e2db5bf3 (diff)
downloademacs-0bd3cb7b2f44639e1da2245b086cedeabbfe46cf.tar.gz
emacs-0bd3cb7b2f44639e1da2245b086cedeabbfe46cf.zip
Fix distribution tarball for the MS-DOS build.
make-dist (tempdir): Create `autogen'. (msdos): Add depfiles.bat and inttypes.h. (autogen): Put README, config.in, and Makefile.in ionto the distribution, they are needed for the MS-DOS build. msdos/sed3v2.inp (insrcdir): Comment out definition. $(insrcdir): Edit into MS-DOS existence test.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist7
1 files changed, 6 insertions, 1 deletions
diff --git a/make-dist b/make-dist
index a428686cc84..b7043b28d8f 100755
--- a/make-dist
+++ b/make-dist
@@ -297,7 +297,7 @@ for subdir in site-lisp \
297 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \ 297 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
298 `find etc lisp admin -type d` \ 298 `find etc lisp admin -type d` \
299 doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \ 299 doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \
300 info m4 msdos \ 300 info m4 msdos autogen \
301 nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \ 301 nextstep nextstep/Cocoa nextstep/Cocoa/Emacs.base \
302 nextstep/Cocoa/Emacs.base/Contents \ 302 nextstep/Cocoa/Emacs.base/Contents \
303 nextstep/Cocoa/Emacs.base/Contents/Resources \ 303 nextstep/Cocoa/Emacs.base/Contents/Resources \
@@ -419,8 +419,13 @@ echo "Making links to \`nt/icons'"
419echo "Making links to \`msdos'" 419echo "Making links to \`msdos'"
420(cd msdos 420(cd msdos
421 ln ChangeLog INSTALL README emacs.ico emacs.pif ../${tempdir}/msdos 421 ln ChangeLog INSTALL README emacs.ico emacs.pif ../${tempdir}/msdos
422 ln depfiles.bat inttypes.h ../${tempdir}/msdos
422 ln is_exec.c sigaction.c mainmake.v2 sed*.inp ../${tempdir}/msdos) 423 ln is_exec.c sigaction.c mainmake.v2 sed*.inp ../${tempdir}/msdos)
423 424
425echo "Making links to \`autogen'"
426(cd autogen
427 ln README config.in Makefile.in ../${tempdir}/autogen)
428
424echo "Making links to \`nextstep'" 429echo "Making links to \`nextstep'"
425(cd nextstep 430(cd nextstep
426 ln ChangeLog README INSTALL ../${tempdir}/nextstep) 431 ln ChangeLog README INSTALL ../${tempdir}/nextstep)