diff options
| author | Jim Blandy | 1992-10-27 00:55:32 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-10-27 00:55:32 +0000 |
| commit | 763ab97aec666a1a1583dc609fcaea03d934a1fe (patch) | |
| tree | a66b0ffadee515a5dcaed4be8b7e12fc492bf03d | |
| parent | 624b4662979b58d00830924a66a662033bf75b90 (diff) | |
| download | emacs-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-x | make-dist | 7 |
1 files changed, 5 insertions, 2 deletions
| @@ -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. |
| 96 | echo "Making links to top-level files." | 96 | echo "Making links to top-level files." |
| 97 | ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README move-if-change ${tempdir} | 97 | ln GETTING.GNU.SOFTWARE INSTALL PROBLEMS README move-if-change ${tempdir} |
| 98 | ln ChangeLog Makefile.in build-install.in configure config.sub ${tempdir} | 98 | ln ChangeLog Makefile.in build-install.in configure make-dist ${tempdir} |
| 99 | ln 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. | ||
| 102 | cp config.sub ${tempdir} | ||
| 100 | 103 | ||
| 101 | echo "Creating subdirectories." | 104 | echo "Creating subdirectories." |
| 102 | for subdir in lisp lisp/term local-lisp external-lisp \ | 105 | for subdir in lisp lisp/term local-lisp external-lisp \ |