Mercurial > emacs
comparison make-dist @ 3818:ec5cc4995395
* make-dist: If using gzip, create distribution with '.gz' extension.
* make-dist (lisp/term): This doesn't have a ChangeLog anymore.
(lisp/forms-mode): This doesn't exist anymore.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Fri, 18 Jun 1993 00:50:11 +0000 |
parents | e65e33390314 |
children | 43a30cb1b170 |
comparison
equal
deleted
inserted
replaced
3817:e65e33390314 | 3818:ec5cc4995395 |
---|---|
154 echo "Making links to \`lisp'." | 154 echo "Making links to \`lisp'." |
155 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el. | 155 ### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el. |
156 (cd lisp | 156 (cd lisp |
157 ln [a-zA-Z]*.el ../${tempdir}/lisp | 157 ln [a-zA-Z]*.el ../${tempdir}/lisp |
158 ln [a-zA-Z]*.elc ../${tempdir}/lisp | 158 ln [a-zA-Z]*.elc ../${tempdir}/lisp |
159 ln [a-zA-Z]*.dat forms.README ../${tempdir}/lisp | |
159 ## simula.el doesn't keep abbreviations in simula.defns any more. | 160 ## simula.el doesn't keep abbreviations in simula.defns any more. |
160 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp | 161 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp |
161 ln ChangeLog README ../${tempdir}/lisp | 162 ln ChangeLog README ../${tempdir}/lisp |
162 cd ../${tempdir}/lisp | 163 cd ../${tempdir}/lisp |
163 rm -f TAGS =* | 164 rm -f TAGS =* |
179 ### Don't distribute =*.el files or TAGS. | 180 ### Don't distribute =*.el files or TAGS. |
180 (cd lisp/term | 181 (cd lisp/term |
181 ln [a-zA-Z]*.el ../../${tempdir}/lisp/term | 182 ln [a-zA-Z]*.el ../../${tempdir}/lisp/term |
182 ln [a-zA-Z]*.elc ../../${tempdir}/lisp/term | 183 ln [a-zA-Z]*.elc ../../${tempdir}/lisp/term |
183 ln README ../../${tempdir}/lisp/term | 184 ln README ../../${tempdir}/lisp/term |
184 rm -f =* TAGS) | |
185 | |
186 echo "Making links to \`lisp/forms-mode'." | |
187 (cd lisp/forms-mode | |
188 ln [a-zA-Z]*.el ../../${tempdir}/lisp/forms-mode | |
189 ln [a-zA-Z]*.elc ../../${tempdir}/lisp/forms-mode | |
190 ln forms.README forms-d2.dat ../../${tempdir}/lisp/forms-mode | |
191 rm -f =* TAGS) | 185 rm -f =* TAGS) |
192 | 186 |
193 ### echo "Making links to \`external-lisp'." | 187 ### echo "Making links to \`external-lisp'." |
194 ### ### Don't distribute =*.el files or TAGS. | 188 ### ### Don't distribute =*.el files or TAGS. |
195 ### (cd external-lisp | 189 ### (cd external-lisp |
334 echo compress | 328 echo compress |
335 )` | 329 )` |
336 fi | 330 fi |
337 case "${default_gzip}" in | 331 case "${default_gzip}" in |
338 compress* ) gzip_extension=.Z ;; | 332 compress* ) gzip_extension=.Z ;; |
339 * ) gzip_extension=.z ;; | 333 * ) gzip_extension=.gz ;; |
340 esac | 334 esac |
341 echo "Creating tar file." | 335 echo "Creating tar file." |
342 (cd ${tempparent} ; tar cvf - ${emacsname} ) \ | 336 (cd ${tempparent} ; tar cvf - ${emacsname} ) \ |
343 | ${default_gzip} \ | 337 | ${default_gzip} \ |
344 > ${emacsname}.tar${gzip_extension} | 338 > ${emacsname}.tar${gzip_extension} |