diff options
| -rwxr-xr-x | make-dist | 8 |
1 files changed, 2 insertions, 6 deletions
| @@ -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. |
| 635 | echo "Making sure copying notices are all copies of \`etc/COPYING'" | 635 | echo "Making sure copying notices are all copies of \`etc/COPYING'" |
| 636 | rm -f ${tempdir}/etc/COPYING | 636 | for subdir in . etc lisp src lib-src info msdos; do |
| 637 | cp etc/COPYING ${tempdir}/etc/COPYING | 637 | rm -f ${tempdir}/${subdir}/COPYING |
| 638 | for 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} |
| 643 | done | 639 | done |
| 644 | 640 | ||