comparison make-dist @ 1688:c4da55e6cfd3

* make-dist: Don't bother creating an arch-lib directory; that's only for installation now.
author Jim Blandy <jimb@redhat.com>
date Sat, 12 Dec 1992 15:43:12 +0000
parents 71a9637cab59
children 4be274918c90
comparison
equal deleted inserted replaced
1687:2bee660c3046 1688:c4da55e6cfd3
1 #!/bin/sh 1 #!/bin/sh
2 2
3 #### make-dist: create an Emacs distribution tar file from the current 3 #### make-dist: create an Emacs distribution tar file from the current
4 #### source tree. This basically creates a duplicate directory 4 #### source tree. This basically creates a duplicate directory
5 #### structure, and then hard links into it only those files that should 5 #### structure, and then hard links into it only those files that should
6 #### be distributed. This means that if you add a file with an odd name, 6 #### be distributed. This means that if you add a file with an odd name,
7 #### you should make sure that this script will include it. 7 #### you should make sure that this script will include it.
8 8
9 progname="$0" 9 progname="$0"
101 cp config.sub ${tempdir} 101 cp config.sub ${tempdir}
102 102
103 echo "Creating subdirectories." 103 echo "Creating subdirectories."
104 for subdir in lisp lisp/term local-lisp external-lisp \ 104 for subdir in lisp lisp/term local-lisp external-lisp \
105 src src/m src/s lib-src oldXMenu \ 105 src src/m src/s lib-src oldXMenu \
106 etc lock arch-lib cpp info man shortnames vms; do 106 etc lock cpp info man shortnames vms; do
107 mkdir ${tempdir}/${subdir} 107 mkdir ${tempdir}/${subdir}
108 done 108 done
109 109
110 echo "Making links to \`lisp'." 110 echo "Making links to \`lisp'."
111 ### Don't distribute =*.el files, site-init.el, site-load.el, or default.el. 111 ### Don't distribute =*.el files, site-init.el, site-load.el, or default.el.