comparison make-dist @ 1997:4b2a76f0d640

* make-dist: Don't try to copy the COPYING notice into external-lisp; we're not distributing that directory any more.
author Jim Blandy <jimb@redhat.com>
date Tue, 02 Mar 1993 08:28:38 +0000
parents 05297a5a8238
children 0b629ab3f06a
comparison
equal deleted inserted replaced
1996:9d213c299866 1997:4b2a76f0d640
229 ### It would be nice if they could all be symlinks to etc's copy, but 229 ### It would be nice if they could all be symlinks to etc's copy, but
230 ### you're not supposed to have any symlinks in distribution tar files. 230 ### you're not supposed to have any symlinks in distribution tar files.
231 echo "Making sure copying notices are all copies of \`etc/COPYING'." 231 echo "Making sure copying notices are all copies of \`etc/COPYING'."
232 rm -f ${tempdir}/etc/COPYING 232 rm -f ${tempdir}/etc/COPYING
233 cp etc/COPYING ${tempdir}/etc/COPYING 233 cp etc/COPYING ${tempdir}/etc/COPYING
234 for subdir in lisp external-lisp src lib-src info shortnames; do 234 # I think we're not going to distribute anything in external-lisp, so
235 # I've removed it from this list.
236 for subdir in lisp src lib-src info shortnames; do
235 if [ -f ${tempdir}/${subdir}/COPYING ]; then 237 if [ -f ${tempdir}/${subdir}/COPYING ]; then
236 rm ${tempdir}/${subdir}/COPYING 238 rm ${tempdir}/${subdir}/COPYING
237 fi 239 fi
238 cp etc/COPYING ${tempdir}/${subdir} 240 cp etc/COPYING ${tempdir}/${subdir}
239 done 241 done