summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-23 21:16:12 +0000
committerJim Blandy <jimb@redhat.com>1993-05-23 21:16:12 +0000
commit5b8def65fb589a0a19c36f1a09cece01e22e4813 (patch)
tree25bda00a54aeb3a1d2912cdade223b2e18ba4428 /make-dist
parent8fc40e801f21de8845cb57b16d71b257f0b95c33 (diff)
downloademacs-5b8def65fb589a0a19c36f1a09cece01e22e4813.tar.gz
* make-dist: Break intra-tree links.
Diffstat (limited to 'make-dist')
-rwxr-xr-xmake-dist7
1 files changed, 7 insertions, 0 deletions
diff --git a/make-dist b/make-dist
index 1c4fa4e2d4d..09211d6239b 100755
--- a/make-dist
+++ b/make-dist
@@ -276,6 +276,13 @@ for subdir in lisp src lib-src info shortnames; do
cp etc/COPYING ${tempdir}/${subdir}
done
+#### Make sure that there aren't any hard links between files in the
+#### distribution; people with afs can't deal with that. Okay,
+#### actually we just re-copy anything with a link count greater
+#### than two.
+echo "Breaking intra-tree links."
+find ${tempdir} ! -type d -links +2 -exec cp {} $$ \; -exec mv $$ {} \;
+
if [ "${newer}" ]; then
echo "Removing files older than $newer."
## We remove .elc files unconditionally, on the theory that anyone picking