diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2019-09-18 09:10:59 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2019-09-18 09:10:59 -0400 |
commit | 95103a84198f9f0147005e270cea48a9806abd16 (patch) | |
tree | c5b3f3151c19f4df7bdca2bb2da8180d66972d37 /binutils/doc/Makefile.am | |
parent | e0b2a78c83207340f6c4b5dbe02bec850dbb7def (diff) | |
download | gdb-95103a84198f9f0147005e270cea48a9806abd16.zip gdb-95103a84198f9f0147005e270cea48a9806abd16.tar.gz gdb-95103a84198f9f0147005e270cea48a9806abd16.tar.bz2 |
binutils: doc: remove stale things from Makefile
The `install-data-local: install-info` part: the comment refers to when
the Makefile had the cygnus option. It no longer uses that, so the info
file should get installed without that rule. I verified that `make
install` still installed $(prefix)/share/info/binutils.info.
The `DISTCLEANFILES` part: the comment talks about Automake 1.9, we are
using 1.15.1, which doesn't appear to have this problem. binutils.info
is built fine without this snippet.
Note: with my automake 1,15.1 (built from source), I get a spurious diff
in Makefile.in, where the
runstatedir = @runstatedir@
line gets removed. I am not sure why, but I haven't included it.
binutils/ChangeLog:
* doc/Makefile.am (install-data-loca): Remove target.
(DISTCLEANFILES): Remove variable.
* doc/Makefile.in: Re-generate.
Diffstat (limited to 'binutils/doc/Makefile.am')
-rw-r--r-- | binutils/doc/Makefile.am | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/binutils/doc/Makefile.am b/binutils/doc/Makefile.am index 49958d2..248e7cd 100644 --- a/binutils/doc/Makefile.am +++ b/binutils/doc/Makefile.am @@ -174,19 +174,8 @@ $(DEMANGLER_NAME).1: cxxfilt.man Makefile -e 's/cxxfilt/$(DEMANGLER_NAME)/' < $$man \ > $(DEMANGLER_NAME).1 -# We want install to imply install-info as per GNU standards, despite the -# cygnus option. -install-data-local: install-info - MAINTAINERCLEANFILES = binutils.info -# Automake 1.9 will only build info files in the objdir if they are -# mentioned in DISTCLEANFILES. It doesn't have to be unconditional, -# though, so we use a bogus condition. -if GENINSRC_NEVER -DISTCLEANFILES = binutils.info -endif - # Maintenance # We need it for the taz target in ../../Makefile.in. |