From 4844b16769ccbe7d568370a9fbe493e0c399d453 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Tue, 13 Mar 2007 23:51:07 +0000 Subject: [PATCH] re PR bootstrap/30899 (build failure with --enable-generated-files-in-srcdir) PR bootstrap/30899 * Make-lang.in (doc/g++.1): Use $< to specify the location from which to copy. From-SVN: r122890 --- gcc/cp/ChangeLog | 6 ++++++ gcc/cp/Make-lang.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 752d86fa4ef..b18286d5183 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2007-03-13 Mark Mitchell + + PR bootstrap/30899 + * Make-lang.in (doc/g++.1): Use $< to specify the location from + which to copy. + 2007-03-12 Seongbae Park * decl.c (compute_array_index_type): New warning flag warn_vla. diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index 5cab50a1704..e2be4bcb764 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -176,7 +176,7 @@ c++.install-common: installdirs # We can't use links because not everyone supports them, and we can't use # .so because Irix 6.5 doesn't support them. So just copy the manpage. doc/g++.1: doc/gcc.1 - cp doc/gcc.1 doc/g++.1 + cp $< doc/g++.1 c++.install-man: $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext) -- 2.30.2