diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-06 17:49:09 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-06 17:49:09 +0000 |
commit | a35b144de578954c2577999913480f7880fe2404 (patch) | |
tree | f21ae0788b23f128c6ad5749894742f2a5c7c45b | |
parent | 7a6d1a725bee667345b88d79b49541d27d199698 (diff) | |
download | gcc-a35b144de578954c2577999913480f7880fe2404.tar.gz |
2001-12-06 H.J. Lu <hjl@gnu.org>
* Makefile.in (.po.gmo): Use "-mkdir po" for parallel build.
(.po.pox): Likewise.
(o/$(PACKAGE).pot): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47724 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a35249c70ab..6ce3c3b6a69 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-12-06 H.J. Lu <hjl@gnu.org> + + * Makefile.in (.po.gmo): Use "-mkdir po" for parallel build. + (.po.pox): Likewise. + (o/$(PACKAGE).pot): Likewise. + 2001-12-06 David O'Brien <obrien@FreeBSD.org> * config.gcc: Include dbxelf.h before elfos.h. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 952ecd3b658..76d8bca6c84 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3318,7 +3318,7 @@ update-po: $(CATALOGS:.gmo=.pox) # N.B. We do not attempt to copy these into $(srcdir). The snapshot # script does that. .po.gmo: - test -d po || mkdir po + -mkdir po $(GMSGFMT) --statistics $< -o $@ # The new .po has to be gone over by hand, so we deposit it into @@ -3326,7 +3326,7 @@ update-po: $(CATALOGS:.gmo=.pox) # If build/po/$(PACKAGE).pot exists, use it (it was just created), # else use the one in srcdir. .po.pox: - test -d po || mkdir po + -mkdir po $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \ then echo po/$(PACKAGE).pot; \ else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@ @@ -3359,7 +3359,7 @@ install-po: # The .pot file is left in the build directory. $(PACKAGE).pot: po/$(PACKAGE).pot po/$(PACKAGE).pot: force - test -d po || mkdir po + -mkdir po $(MAKE) po-generated AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \ $(XGETTEXT) $(PACKAGE) $(srcdir) |