diff options
| author | Jim Blandy <jimb@redhat.com> | 1992-10-27 00:55:32 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1992-10-27 00:55:32 +0000 |
| commit | 763ab97aec666a1a1583dc609fcaea03d934a1fe (patch) | |
| tree | a66b0ffadee515a5dcaed4be8b7e12fc492bf03d | |
| parent | 624b4662979b58d00830924a66a662033bf75b90 (diff) | |
| download | emacs-763ab97aec666a1a1583dc609fcaea03d934a1fe.tar.gz | |
* make-dist: Copy config.sub, since it's a symbolic link to a file
on another file system.
| -rwxr-xr-x | make-dist | 7 |
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} # README while the rest of the tar file is still unpacking. Whoopee. echo "Making links to top-level files." ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README move-if-change ${tempdir} -ln ChangeLog Makefile.in build-install.in configure config.sub ${tempdir} -ln make-dist ${tempdir} +ln ChangeLog Makefile.in build-install.in configure make-dist ${tempdir} +# Copy these files; on the GNU machines, at least, they are symbolic +# links to files on another file system, so we can't make a hard link +# to it. Eech. +cp config.sub ${tempdir} echo "Creating subdirectories." for subdir in lisp lisp/term local-lisp external-lisp \ |
