Commit c34f5b33 by Michael Chastain Committed by Michael Chastain

re PR bootstrap/14893 (3.4.0-20040406, 'make install' fails on doc/gcjh.1)

2004-08-05  Michael Chastain  <mec.gnu@mindspring.com>

	PR bootstrap/14893
	* Make-lang.in (java.install-man): Install from either build
	tree or source tree, whichever has the file first.

(See the PR for more information and the approval from Alexandre Oliva.
 This fix has been in gcc-3_4-branch for about four months).

From-SVN: r85610
parent 21149a79
2004-08-05 Michael Chastain <mec.gnu@mindspring.com>
PR bootstrap/14893
* Make-lang.in (java.install-man): Install from either build
tree or source tree, whichever has the file first.
2004-08-05 Nathan Sidwell <nathan@codesourcery.com> 2004-08-05 Nathan Sidwell <nathan@codesourcery.com>
* jcf-parse.c (get_constant): Adjust force_fit_type call. * jcf-parse.c (get_constant): Adjust force_fit_type call.
......
...@@ -407,7 +407,13 @@ java.install-man: installdirs \ ...@@ -407,7 +407,13 @@ java.install-man: installdirs \
tool_transformed_name=`echo $$tool|sed '$(program_transform_name)'`; \ tool_transformed_name=`echo $$tool|sed '$(program_transform_name)'`; \
man_name=$(DESTDIR)$(man1dir)/$${tool_transformed_name}$(man1ext); \ man_name=$(DESTDIR)$(man1dir)/$${tool_transformed_name}$(man1ext); \
rm -f $$man_name ; \ rm -f $$man_name ; \
$(INSTALL_DATA) doc/$${tool}.1 $$man_name; \ for source_name in doc/$${tool}.1 $(srcdir)/doc/$${tool}.1 ; do \
if test -f $$source_name; then \
$(INSTALL_DATA) $$source_name $$man_name; \
break; \
else : ; \
fi; \
done ; \
chmod a-x $$man_name ; \ chmod a-x $$man_name ; \
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment