summaryrefslogtreecommitdiff
path: root/libcpp/Makefile.in
diff options
context:
space:
mode:
authorbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2009-01-05 10:35:40 +0000
committerbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>2009-01-05 10:35:40 +0000
commite7ae053de3e8c8413a02ea0a723a1bd16f9dfe04 (patch)
treef04c4f141a939473ac101ad43c9d7ef85d2d5717 /libcpp/Makefile.in
parent11d90e05441b46f86abca53b755690db1282c273 (diff)
downloadgcc-e7ae053de3e8c8413a02ea0a723a1bd16f9dfe04.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@143073 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/Makefile.in')
-rw-r--r--libcpp/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in
index 74877bbd982..2d82ebdd8b3 100644
--- a/libcpp/Makefile.in
+++ b/libcpp/Makefile.in
@@ -220,7 +220,7 @@ endif
# N.B. We do not attempt to copy these into $(srcdir).
.po.gmo:
- -test -d po || mkdir po
+ $(mkinstalldirs) po
$(GMSGFMT) --statistics -o $@ $<
# The new .po has to be gone over by hand, so we deposit it into
@@ -228,7 +228,7 @@ endif
# 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
+ $(mkinstalldirs) po
$(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
then echo po/$(PACKAGE).pot; \
else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
@@ -236,7 +236,7 @@ endif
# Rule for regenerating the message template.
$(PACKAGE).pot: po/$(PACKAGE).pot
po/$(PACKAGE).pot: $(libcpp_a_SOURCES)
- -test -d $(srcdir)/po || mkdir $(srcdir)/po
+ mkinstalldirs $(srcdir)/po
$(XGETTEXT) --default-domain=$(PACKAGE) \
--keyword=_ --keyword=N_ \
--keyword=cpp_error:3 --keyword=cpp_errno:3 \