diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-09-01 03:04:52 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-09-01 03:04:52 +0000 |
commit | d52677997968abf968435703358c1a403f40def5 (patch) | |
tree | 4d7914dec7c682719797d34e2fdd7c48c9df4bac /gnu/usr.bin/binutils-2.17/binutils | |
parent | 84f88551d84dc439836c77b5ddcaf77a982be2c2 (diff) |
don't pollute the src dir with info pages when doing builds
ok kettenis@ deraadt@
Diffstat (limited to 'gnu/usr.bin/binutils-2.17/binutils')
-rw-r--r-- | gnu/usr.bin/binutils-2.17/binutils/doc/Makefile.in | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/gnu/usr.bin/binutils-2.17/binutils/doc/Makefile.in b/gnu/usr.bin/binutils-2.17/binutils/doc/Makefile.in index 6aa012702c9..670337c11e4 100644 --- a/gnu/usr.bin/binutils-2.17/binutils/doc/Makefile.in +++ b/gnu/usr.bin/binutils-2.17/binutils/doc/Makefile.in @@ -286,26 +286,8 @@ distclean-libtool: -rm -f libtool .texi.info: - restore=: && backupdir="$(am__leading_dot)am$$$$" && \ - am__cwd=`pwd` && cd $(srcdir) && \ - rm -rf $$backupdir && mkdir $$backupdir && \ - if ($(MAKEINFO) --version) >/dev/null 2>&1; then \ - for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \ - if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \ - done; \ - else :; fi && \ - cd "$$am__cwd"; \ - if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \ - -o $@ $<; \ - then \ - rc=0; \ - cd $(srcdir); \ - else \ - rc=$$?; \ - cd $(srcdir) && \ - $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \ - fi; \ - rm -rf $$backupdir; exit $$rc + @rm -f $@ $@-[0-9] $@-[0-9][0-9] + $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) $< .texi.dvi: TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ |