Commit 58416236 by Kelley Cook Committed by R. Kelley Cook

Make-lang.in: Replace cp/g++.1 with $(docobjdir)/g++.1.

2003-12-17  Kelley Cook  <kcook@gcc.gnu.org>

	* Make-lang.in: Replace cp/g++.1 with $(docobjdir)/g++.1.

From-SVN: r74766
parent 2ca60787
2003-12-17 Kelley Cook <kcook@gcc.gnu.org>
* Make-lang.in: Replace cp/g++.1 with $(docobjdir)/g++.1.
2003-12-17 Mark Mitchell <mark@codesourcery.com> 2003-12-17 Mark Mitchell <mark@codesourcery.com>
PR c++/10603 PR c++/10603
......
...@@ -114,7 +114,7 @@ c++.tags: force ...@@ -114,7 +114,7 @@ c++.tags: force
--regex='/DEFTREECODE [(]\([A-Z_]+\)/\1/' cp-tree.def; \ --regex='/DEFTREECODE [(]\([A-Z_]+\)/\1/' cp-tree.def; \
etags --include TAGS.sub --include ../TAGS.sub etags --include TAGS.sub --include ../TAGS.sub
generated-manpages:: cp/g++.1 generated-manpages:: $(docobjdir)/g++.1
check-c++ : check-g++ check-c++ : check-g++
lang_checks += check-g++ lang_checks += check-g++
...@@ -154,14 +154,14 @@ c++.install-common: installdirs ...@@ -154,14 +154,14 @@ c++.install-common: installdirs
fi ; \ fi ; \
fi fi
cp/g++.1: $(docobjdir)/g++.1:
-rm -f $@ -rm -f $@
-echo ".so man1/$(GCC_INSTALL_NAME).1" > $@ -echo ".so man1/$(GCC_INSTALL_NAME).1" > $@
c++.install-man: installdirs cp/g++.1 c++.install-man: installdirs $(docobjdir)/g++.1
-if [ -f cc1plus$(exeext) ] ; then \ -if [ -f cc1plus$(exeext) ] ; then \
rm -f $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext); \ rm -f $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext); \
$(INSTALL_DATA) cp/g++.1 $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext); \ $(INSTALL_DATA) $(docobjdir)/g++.1 $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext); \
chmod a-x $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext); \ chmod a-x $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext); \
else true; fi else true; fi
...@@ -175,7 +175,7 @@ c++.uninstall: ...@@ -175,7 +175,7 @@ c++.uninstall:
# We just have to delete files specific to us. # We just have to delete files specific to us.
c++.mostlyclean: c++.mostlyclean:
-rm -f cp/g++.1 -rm -f $(docobjdir)/g++.1
-rm -f cp/*$(objext) -rm -f cp/*$(objext)
-rm -f cp/*$(coverageexts) -rm -f cp/*$(coverageexts)
c++.clean: c++.clean:
......
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