From: Pavel Janík Date: Thu, 29 Nov 2001 07:27:54 +0000 (+0000) Subject: Add COPYING to the top-level directory of the distribution. Simplify the X-Git-Tag: ttn-vms-21-2-B4~18044 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b37017c6dddadaba74c21443576d8c414effa5f8;p=emacs.git Add COPYING to the top-level directory of the distribution. Simplify the logic behind copying. --- diff --git a/make-dist b/make-dist index ab70ce94347..5d6cfb4a90c 100755 --- a/make-dist +++ b/make-dist @@ -633,12 +633,8 @@ echo "Making links to \`vms'" ### It would be nice if they could all be symlinks to etc's copy, but ### you're not supposed to have any symlinks in distribution tar files. echo "Making sure copying notices are all copies of \`etc/COPYING'" -rm -f ${tempdir}/etc/COPYING -cp etc/COPYING ${tempdir}/etc/COPYING -for subdir in lisp src lib-src info msdos; do - if [ -f ${tempdir}/${subdir}/COPYING ]; then - rm ${tempdir}/${subdir}/COPYING - fi +for subdir in . etc lisp src lib-src info msdos; do + rm -f ${tempdir}/${subdir}/COPYING cp etc/COPYING ${tempdir}/${subdir} done