diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2001-10-31 17:40:07 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-10-31 17:40:07 +0000 |
commit | 5b7874aa2ee37af18571327281cc28b3acb702f7 (patch) | |
tree | 3017201abd1c4ed2778e3fb3aa8d07ca90a83188 /gcc/aclocal.m4 | |
parent | 5fb566020a0d67fd3b911e6b53530b34b2ec5c38 (diff) | |
download | gcc-5b7874aa2ee37af18571327281cc28b3acb702f7.tar.gz |
Makefile.in (INTL_TARGETS, POSUB): Delete all references.
* Makefile.in (INTL_TARGETS, POSUB): Delete all references.
(INTL_SUBDIRS): Just intl.
(.SUFFIXES): Add .gmo .po .pox.
(native): Also depend on build-@POSUB@.
(intl.all, intl.install): Depend on config.h and things it includes.
(po-generated): New target; depend on c-parse.c and tradcif.c.
(install-normal): Also depend on install-@POSUB@.
(XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): New variables.
(build-, install-, build-po, update-po, install-po,
.po.gmo, .po.pox, $(PACKAGE).pot, po/$(PACKAGE).pot): New rules.
* aclocal.m4: Prefix each entry in CATALOGS with "po/"
* configure.in: Don't munge XGETTEXT. Don't generate
po/Makefile.in.
* configure: Regenerate.
* exgettext: Delete.
* config/m68k/m68k.h: Add doc strings for -msky and -mnosky.
* cp/Make-lang.in, java/Make-lang.in, objc/Make-lang.in: Replace
$(INTL_TARGETS) with po-generated.
po:
* EXCLUDES: New file.
* exgettext: New helper script; completely rewritten.
* Makefile.in.in, POTFILES.in: Delete.
From-SVN: r46680
Diffstat (limited to 'gcc/aclocal.m4')
-rw-r--r-- | gcc/aclocal.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4 index 5927d4cf380..2ffb0487635 100644 --- a/gcc/aclocal.m4 +++ b/gcc/aclocal.m4 @@ -1691,8 +1691,9 @@ strdup strtoul tsearch __argz_count __argz_stringify __argz_next]) fi dnl Construct list of names of catalog files to be constructed. + dnl GCC LOCAL: Tweak for non-recursive po directory build. if test -n "$LINGUAS"; then - for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + for lang in $LINGUAS; do CATALOGS="$CATALOGS po/$lang$CATOBJEXT"; done fi fi |