diff options
author | Jim Blandy <jimb@redhat.com> | 1992-11-10 23:12:23 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-11-10 23:12:23 +0000 |
commit | c9867f005f7863f8c733de707f60359dac68ba02 (patch) | |
tree | 1b56531ff40ba81dfe35bee56250585bd9972994 /make-dist | |
parent | a98520982887f4e21ec14e5ef1fa7ea2346b4347 (diff) | |
download | emacs-c9867f005f7863f8c733de707f60359dac68ba02.tar.gz |
Sat Nov 7 15:11:39 1992 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
* make-dist: Don't forget that the way to avoid filenames starting
with `=' is to use the pattern `[a-zA-Z0-9]*.h', not
`[a-zA-Z0-9].h'. Add a new section for dealing with files that we
couldn't make hard links to, since we have two already, and
perhaps more to come.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/make-dist b/make-dist index 23d28586cdc..7fd395ac981 100755 --- a/make-dist +++ b/make-dist @@ -97,12 +97,6 @@ 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} -# 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. -if [ ! -f ${tempdir}/config.sub ]; then - cp config.sub ${tempdir} -fi echo "Creating subdirectories." for subdir in lisp lisp/term local-lisp external-lisp \ @@ -149,11 +143,6 @@ echo "Making links to \`src'." ../${tempdir}/src ln .gdbinit .dbxinit ../${tempdir}/src ln *.com *.opt vms-pp.trans vmsbuild ../${tempdir}/src - # gmalloc.c is a symbolic link to another file system, so we can't - # link it into ${tempdir}. We copy it. Eech. - if [ ! -f ../${tempdir}/src/gmalloc.c ]; then - cp gmalloc.c ../${tempdir}/src - fi cd ../${tempdir}/src rm -f config.h paths.h Makefile if [ -z "${newer}" ]; then |