# HG changeset patch # User Richard M. Stallman # Date 867739241 0 # Node ID 614b4d642525eb1f8932e092afd49e3cfa686ca9 # Parent 38e3a189ed1dc7f2caeb0f30f56cd30d7ae90cf8 (etc): Copy symlinks, as in src. diff -r 38e3a189ed1d -r 614b4d642525 make-dist --- a/make-dist Tue Jul 01 06:32:13 1997 +0000 +++ b/make-dist Tue Jul 01 06:40:41 1997 +0000 @@ -6,7 +6,7 @@ #### be distributed. This means that if you add a file with an odd name, #### you should make sure that this script will include it. -# Copyright (C) 1995 Free Software Foundation, Inc. +# Copyright (C) 1995, 1997 Free Software Foundation, Inc. # # This file is part of GNU Emacs. # @@ -406,6 +406,22 @@ ### tex litter. (cd etc ln `ls -d * | grep -v 'RCS' | grep -v 'Old' | grep -v '^e$'` ../${tempdir}/etc + ## If we ended up with a symlink, or if we did not get anything + ## due to a cross-device symlink, copy the file. + for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in [a-zA-Z]*.opt; do + if test -f ../${tempdir}/etc/$file; then + # test -f appears to succeed for a symlink + if test -L ../${tempdir}/etc/$file; then + rm ../${tempdir}/etc/$file + cp $file ../${tempdir}/etc + chmod a-w ../${tempdir}/etc/$file + fi + else + rm ../${tempdir}/etc/$file + cp $file ../${tempdir}/etc + chmod a-w ../${tempdir}/etc/$file + fi + done cd ../${tempdir}/etc rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core rm -f TAGS)