aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1993-11-05 18:37:43 +0000
committerKen Raeburn <raeburn@cygnus>1993-11-05 18:37:43 +0000
commitea18081db683908756fef0844c2eb28afc63fa9c (patch)
tree6d12b662547ae2ce407392aa5f32a34a18616ea5 /Makefile.in
parentd5481f5dcbb8da8cc78ce91aac514a51ce00f3eb (diff)
downloadfsf-binutils-gdb-ea18081db683908756fef0844c2eb28afc63fa9c.zip
fsf-binutils-gdb-ea18081db683908756fef0844c2eb28afc63fa9c.tar.gz
fsf-binutils-gdb-ea18081db683908756fef0844c2eb28afc63fa9c.tar.bz2
* Makefile.in (taz): Only build "info" in DISTDOCDIRS.
(DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want this now.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 0a1b886..3ba3731 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1053,8 +1053,8 @@ SUPPORT_FILES = list-of-support-files-for-tool-in-question
DISTSTUFFDIRS= ld gprof gdb libg++ binutils
# Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
-# Directories where "info" and "dvi" should be built.
-DISTDOCDIRS= ld gprof binutils gdb libg++ gas bfd
+# Directories where "info" should be built.
+DISTDOCDIRS= ld gprof binutils gas bfd
.PHONY: taz
@@ -1079,7 +1079,7 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
# Doc files don't change; include them in distribution.
for f in $(DISTDOCDIRS) ; do \
if [ -r $$f/Makefile ]; then \
- (cd $$f ; $(MAKE) info dvi) || exit 1 ; \
+ (cd $$f ; $(MAKE) info) || exit 1 ; \
else true ; fi ; \
done
# Make links, and run "make diststuff" when needed.