diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-23 19:05:09 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-23 19:05:09 +0000 |
commit | 5379de95445d34e8766d5b9e2ee8c328f2efa4bb (patch) | |
tree | 03a3597ca00c1e6b83b15f2ac6a03a4948fb4455 /libiberty/Makefile.in | |
parent | 640b02d5ee43a5fe13e567b7c7d1f31e298d6889 (diff) | |
download | gcc-5379de95445d34e8766d5b9e2ee8c328f2efa4bb.tar.gz |
2009-08-23 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10536
* Makefile.in (install-html-recursive): Removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151037 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/Makefile.in')
-rw-r--r-- | libiberty/Makefile.in | 29 |
1 files changed, 2 insertions, 27 deletions
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index e8f4f4d679a..5d2adffc7b7 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -264,14 +264,14 @@ HTMLS = libiberty.html html: $(HTMLS) -.PHONY: install-html install-html-am install-html-recursive +.PHONY: install-html install-html-am NORMAL_INSTALL = : mkdir_p = mkdir -p -- html__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -install-html: install-html-recursive install-html-am +install-html: install-html-am install-html-am: $(HTMLS) @$(NORMAL_INSTALL) @@ -290,31 +290,6 @@ install-html-am: $(HTMLS) fi; \ done -install-html-recursive: - @failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - TEXISRC = \ $(srcdir)/libiberty.texi \ $(srcdir)/copying-lib.texi \ |