aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1992-10-27 00:55:32 +0000
committerJim Blandy1992-10-27 00:55:32 +0000
commit763ab97aec666a1a1583dc609fcaea03d934a1fe (patch)
treea66b0ffadee515a5dcaed4be8b7e12fc492bf03d
parent624b4662979b58d00830924a66a662033bf75b90 (diff)
downloademacs-763ab97aec666a1a1583dc609fcaea03d934a1fe.tar.gz
emacs-763ab97aec666a1a1583dc609fcaea03d934a1fe.zip
* make-dist: Copy config.sub, since it's a symbolic link to a file
on another file system.
-rwxr-xr-xmake-dist7
1 files changed, 5 insertions, 2 deletions
diff --git a/make-dist b/make-dist
index c544d0d88e1..ce8223a7f2f 100755
--- a/make-dist
+++ b/make-dist
@@ -95,8 +95,11 @@ mkdir ${tempdir}
95# README while the rest of the tar file is still unpacking. Whoopee. 95# README while the rest of the tar file is still unpacking. Whoopee.
96echo "Making links to top-level files." 96echo "Making links to top-level files."
97ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README move-if-change ${tempdir} 97ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README move-if-change ${tempdir}
98ln ChangeLog Makefile.in build-install.in configure config.sub ${tempdir} 98ln ChangeLog Makefile.in build-install.in configure make-dist ${tempdir}
99ln make-dist ${tempdir} 99# Copy these files; on the GNU machines, at least, they are symbolic
100# links to files on another file system, so we can't make a hard link
101# to it. Eech.
102cp config.sub ${tempdir}
100 103
101echo "Creating subdirectories." 104echo "Creating subdirectories."
102for subdir in lisp lisp/term local-lisp external-lisp \ 105for subdir in lisp lisp/term local-lisp external-lisp \