diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2009-08-23 03:54:32 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2009-08-23 03:54:32 +0000 |
commit | 201a407332e00f12a53ea87aa107860c813c30c2 (patch) | |
tree | b262d3b232feab6394cdf8e4d1c2c6e79f326989 /Makefile.in | |
parent | 879de935e0362c00955b406c7291953db01e0b95 (diff) | |
download | emacs-201a407332e00f12a53ea87aa107860c813c30c2.tar.gz |
* Makefile.in (install-arch-indep): If the versioned DOC-####
generated during loadup+dump isn't found, install the plain DOC
file that always gets generated, in case CANNOT_DUMP is set.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 44c5cba7d9c..a3ddec80253 100644 --- a/Makefile.in +++ b/Makefile.in @@ -526,7 +526,7 @@ install-arch-indep: mkdir info install-etc then \ docfile="DOC-$${fullversion}"; \ else \ - docfile="DOC-${version}*"; \ + docfile="DOC"; \ fi; \ echo "Copying etc/$${docfile} to $(DESTDIR)${docdir} ..." ; \ (cd ./etc; tar -chf - $${docfile}) \ |