This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: bug in gcc/po/POTFILES.in ?


* Denis Chertykov (denisc@overta.ru) [20000913 20:01]:
 
> How can I compile gcc-core (or only C compiler from CVS) if

> cp/parse.c   # generated only if I want to compile C++ even if I have cp/*
> cp/parse.h   # Likewise.

Damn it! I totally forgot why the creation of gcc.pot was put under
--enable-maintainer-mode. Exactly because it can be built (and thus only
checked) only in a complete tree.

There goes what I had thought was a neat solution. Seems I'll have to take
it out again :( For now, use this patch:

Index: gcc/po/Makefile.in.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/po/Makefile.in.in,v
retrieving revision 1.6
diff -u -r1.6 Makefile.in.in
--- Makefile.in.in	2000/09/12 04:10:56	1.6
+++ Makefile.in.in	2000/09/13 18:37:52
@@ -79,7 +79,7 @@
 
 all: all-@USE_NLS@
 
-all-yes: stamp-check-pot $(CATALOGS) @MAINT@ $(srcdir)/cat-id-tbl.c 
+all-yes: $(CATALOGS) @MAINT@ $(srcdir)/cat-id-tbl.c 
 all-no:
 
 stamp-check-pot: $(POTFILES)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]