mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
Trying to fix #8063 (failure to build gcc2 when updating info files):
* remove all *.info targets so the gcc2 build system doesn't
try to update them, as that doesn't always work because of
apparent incompatibilities with newer makeinfo versions
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@42999 a95241bf-73f2-0310-859d-f6bbb57e9c96
(cherry picked from commit 32fb726909
)
This commit is contained in:
parent
ba94fdf309
commit
e925619d1f
@ -51,7 +51,7 @@ CONFIG_CLEAN_FILES =
|
||||
depcomp =
|
||||
am__depfiles_maybe =
|
||||
SOURCES =
|
||||
INFO_DEPS = $(srcdir)/bfd.info
|
||||
INFO_DEPS = # $(srcdir)/bfd.info
|
||||
TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
|
||||
am__TEXINFO_TEX_DIR = $(top_srcdir)/../texinfo
|
||||
DVIS = bfd.dvi
|
||||
|
@ -53,7 +53,7 @@ CONFIG_CLEAN_FILES =
|
||||
depcomp =
|
||||
am__depfiles_maybe =
|
||||
SOURCES =
|
||||
INFO_DEPS = $(srcdir)/binutils.info
|
||||
INFO_DEPS = # $(srcdir)/binutils.info
|
||||
TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
|
||||
am__TEXINFO_TEX_DIR = $(top_srcdir)/../texinfo
|
||||
DVIS = binutils.dvi
|
||||
|
@ -54,7 +54,7 @@ TEXIDIR = $(srcdir)/../texinfo
|
||||
#### Host, target, and site specific Makefile fragments come in here.
|
||||
###
|
||||
|
||||
INFOFILES = standards.info configure.info
|
||||
INFOFILES = # standards.info configure.info
|
||||
DVIFILES = standards.dvi configure.dvi
|
||||
HTMLFILES = standards.html configure.html
|
||||
|
||||
|
@ -50,7 +50,7 @@ CONFIG_CLEAN_FILES =
|
||||
depcomp =
|
||||
am__depfiles_maybe =
|
||||
SOURCES =
|
||||
INFO_DEPS = $(srcdir)/as.info
|
||||
INFO_DEPS = # $(srcdir)/as.info
|
||||
TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
|
||||
am__TEXINFO_TEX_DIR = $(top_srcdir)/../texinfo
|
||||
DVIS = as.dvi
|
||||
|
@ -241,7 +241,7 @@ $(TESTLIB): $(REQUIRED_OFILES) $(CONFIGURED_OFILES)
|
||||
$(REQUIRED_OFILES) $(CONFIGURED_OFILES)
|
||||
$(RANLIB) $(TESTLIB)
|
||||
|
||||
info: libiberty.info info-subdir
|
||||
info: # libiberty.info info-subdir
|
||||
install-info: install-info-subdir
|
||||
clean-info: clean-info-subdir
|
||||
dvi: libiberty.dvi dvi-subdir
|
||||
|
@ -40,7 +40,7 @@ TEXIDIR = $(srcdir)/../texinfo
|
||||
#### Host, target, and site specific Makefile fragments come in here.
|
||||
###
|
||||
|
||||
INFOFILES = standards.info
|
||||
INFOFILES = # standards.info
|
||||
DVIFILES = standards.dvi
|
||||
|
||||
all:
|
||||
|
@ -2267,7 +2267,7 @@ stmp-fixproto: fixhdr.ready fixproto stmp-headers
|
||||
# Remake the info files.
|
||||
|
||||
doc: info
|
||||
info: cpp.info gcc.info lang.info
|
||||
info: # cpp.info gcc.info lang.info
|
||||
|
||||
cpp.info: $(srcdir)/cpp.texi
|
||||
$(MAKEINFO) $(MAKEINFOFLAGS) -I$(srcdir) -o cpp.info $(srcdir)/cpp.texi
|
||||
@ -2578,17 +2578,17 @@ install-driver: xgcc$(exeext)
|
||||
# to do the install.
|
||||
install-info: doc installdirs lang.install-info
|
||||
-rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
|
||||
for f in cpp.info* gcc.info*; do \
|
||||
$(INSTALL_DATA) $$f $(infodir)/$$f; \
|
||||
done
|
||||
-if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
|
||||
if [ -f $(infodir)/dir ] ; then \
|
||||
for f in cpp.info gcc.info; do \
|
||||
install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
|
||||
done; \
|
||||
else true; fi; \
|
||||
else true; fi;
|
||||
-chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
|
||||
# for f in cpp.info* gcc.info*; do \
|
||||
# $(INSTALL_DATA) $$f $(infodir)/$$f; \
|
||||
# done
|
||||
# -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
|
||||
# if [ -f $(infodir)/dir ] ; then \
|
||||
# for f in cpp.info gcc.info; do \
|
||||
# install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
|
||||
# done; \
|
||||
# else true; fi; \
|
||||
# else true; fi;
|
||||
# -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
|
||||
|
||||
# Install the man pages.
|
||||
install-man: installdirs $(srcdir)/gcc.1 $(srcdir)/cccp.1 lang.install-man
|
||||
|
Loading…
Reference in New Issue
Block a user