Commit fc0cd180 by Ben Elliston Committed by Ben Elliston

Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.

libcpp/
	* Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
	(.po.pox): Likewise.
	(po/$(PACKAGE).pot): Likewise.

gcc/
	* Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
	(.po.pox): Likewise.
	(po/gcc.pot): Likewise.

From-SVN: r143073
parent e28206ba
2009-01-05 Ben Elliston <bje@au.ibm.com>
* Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
(.po.pox): Likewise.
(po/gcc.pot): Likewise.
2009-01-04 David S. Miller <davem@davemloft.net> 2009-01-04 David S. Miller <davem@davemloft.net>
* config/sparc/sparc.h (SECONDARY_MEMORY_NEEDED_RTX): Delete. * config/sparc/sparc.h (SECONDARY_MEMORY_NEEDED_RTX): Delete.
......
...@@ -4742,7 +4742,7 @@ update-po: $(CATALOGS:.gmo=.pox) ...@@ -4742,7 +4742,7 @@ update-po: $(CATALOGS:.gmo=.pox)
# N.B. We do not attempt to copy these into $(srcdir). The snapshot # N.B. We do not attempt to copy these into $(srcdir). The snapshot
# script does that. # script does that.
.po.gmo: .po.gmo:
-test -d po || mkdir po $(mkinstalldirs) po
$(GMSGFMT) --statistics -o $@ $< $(GMSGFMT) --statistics -o $@ $<
# The new .po has to be gone over by hand, so we deposit it into # The new .po has to be gone over by hand, so we deposit it into
...@@ -4750,7 +4750,7 @@ update-po: $(CATALOGS:.gmo=.pox) ...@@ -4750,7 +4750,7 @@ update-po: $(CATALOGS:.gmo=.pox)
# If build/po/gcc.pot exists, use it (it was just created), # If build/po/gcc.pot exists, use it (it was just created),
# else use the one in srcdir. # else use the one in srcdir.
.po.pox: .po.pox:
-test -d po || mkdir po $(mkinstalldirs) po
$(MSGMERGE) $< `if test -f po/gcc.pot; \ $(MSGMERGE) $< `if test -f po/gcc.pot; \
then echo po/gcc.pot; \ then echo po/gcc.pot; \
else echo $(srcdir)/po/gcc.pot; fi` -o $@ else echo $(srcdir)/po/gcc.pot; fi` -o $@
...@@ -4783,7 +4783,7 @@ install-po: ...@@ -4783,7 +4783,7 @@ install-po:
# The .pot file is left in the build directory. # The .pot file is left in the build directory.
gcc.pot: po/gcc.pot gcc.pot: po/gcc.pot
po/gcc.pot: force po/gcc.pot: force
-test -d po || mkdir po $(mkinstalldirs) po
$(MAKE) srcextra $(MAKE) srcextra
AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \ AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
$(XGETTEXT) gcc $(srcdir) $(XGETTEXT) gcc $(srcdir)
2009-01-05 Ben Elliston <bje@au.ibm.com>
* Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
(.po.pox): Likewise.
(po/$(PACKAGE).pot): Likewise.
2008-12-10 Alexandre Oliva <aoliva@redhat.com> 2008-12-10 Alexandre Oliva <aoliva@redhat.com>
PR target/37033 PR target/37033
......
...@@ -220,7 +220,7 @@ endif ...@@ -220,7 +220,7 @@ endif
# N.B. We do not attempt to copy these into $(srcdir). # N.B. We do not attempt to copy these into $(srcdir).
.po.gmo: .po.gmo:
-test -d po || mkdir po $(mkinstalldirs) po
$(GMSGFMT) --statistics -o $@ $< $(GMSGFMT) --statistics -o $@ $<
# The new .po has to be gone over by hand, so we deposit it into # The new .po has to be gone over by hand, so we deposit it into
...@@ -228,7 +228,7 @@ endif ...@@ -228,7 +228,7 @@ endif
# If build/po/$(PACKAGE).pot exists, use it (it was just created), # If build/po/$(PACKAGE).pot exists, use it (it was just created),
# else use the one in srcdir. # else use the one in srcdir.
.po.pox: .po.pox:
-test -d po || mkdir po $(mkinstalldirs) po
$(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \ $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
then echo po/$(PACKAGE).pot; \ then echo po/$(PACKAGE).pot; \
else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@ else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
...@@ -236,7 +236,7 @@ endif ...@@ -236,7 +236,7 @@ endif
# Rule for regenerating the message template. # Rule for regenerating the message template.
$(PACKAGE).pot: po/$(PACKAGE).pot $(PACKAGE).pot: po/$(PACKAGE).pot
po/$(PACKAGE).pot: $(libcpp_a_SOURCES) po/$(PACKAGE).pot: $(libcpp_a_SOURCES)
-test -d $(srcdir)/po || mkdir $(srcdir)/po mkinstalldirs $(srcdir)/po
$(XGETTEXT) --default-domain=$(PACKAGE) \ $(XGETTEXT) --default-domain=$(PACKAGE) \
--keyword=_ --keyword=N_ \ --keyword=_ --keyword=N_ \
--keyword=cpp_error:3 --keyword=cpp_errno:3 \ --keyword=cpp_error:3 --keyword=cpp_errno:3 \
......
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