aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2001-11-29 07:27:54 +0000
committerPavel Janík2001-11-29 07:27:54 +0000
commitb37017c6dddadaba74c21443576d8c414effa5f8 (patch)
tree76c999c588e48a429552363b23e74ede775f76e1
parentb1356234ad5fb821b66f4109639307c9e2d4acd9 (diff)
downloademacs-b37017c6dddadaba74c21443576d8c414effa5f8.tar.gz
emacs-b37017c6dddadaba74c21443576d8c414effa5f8.zip
Add COPYING to the top-level directory of the distribution. Simplify the
logic behind copying.
-rwxr-xr-xmake-dist8
1 files changed, 2 insertions, 6 deletions
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'"
633### It would be nice if they could all be symlinks to etc's copy, but 633### It would be nice if they could all be symlinks to etc's copy, but
634### you're not supposed to have any symlinks in distribution tar files. 634### you're not supposed to have any symlinks in distribution tar files.
635echo "Making sure copying notices are all copies of \`etc/COPYING'" 635echo "Making sure copying notices are all copies of \`etc/COPYING'"
636rm -f ${tempdir}/etc/COPYING 636for subdir in . etc lisp src lib-src info msdos; do
637cp etc/COPYING ${tempdir}/etc/COPYING 637 rm -f ${tempdir}/${subdir}/COPYING
638for subdir in lisp src lib-src info msdos; do
639 if [ -f ${tempdir}/${subdir}/COPYING ]; then
640 rm ${tempdir}/${subdir}/COPYING
641 fi
642 cp etc/COPYING ${tempdir}/${subdir} 638 cp etc/COPYING ${tempdir}/${subdir}
643done 639done
644 640