From daa5a3e62c1701967d719edb1074c973a1600ece Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 24 Dec 1992 05:57:29 +0000 Subject: * make-dist: Make sure that the COPYING notices in each directory are copies, not symlinks. --- make-dist | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'make-dist') diff --git a/make-dist b/make-dist index 4d76be2fa2d..9c0207ae6e3 100755 --- a/make-dist +++ b/make-dist @@ -217,14 +217,16 @@ echo "Making links to \`vms'." cd ../${tempdir}/vms rm -f *~) -echo "Making sure copying notices are all symlinks to \`etc/COPYING'." +### 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 external-lisp src lib-src info shortnames; do if [ -f ${tempdir}/${subdir}/COPYING ]; then rm ${tempdir}/${subdir}/COPYING fi - ln -s ../etc/COPYING ${tempdir}/${subdir} + cp ../etc/COPYING ${tempdir}/${subdir} done if [ "${newer}" ]; then -- cgit v1.2.1