From: jsm28 Date: Sat, 28 Mar 2009 06:57:44 +0000 (+0000) Subject: * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not X-Git-Tag: upstream/4.9.2~37368 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5a78dd064909cf9ccae90e55a760173ccce8896;p=platform%2Fupstream%2Flinaro-gcc.git * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not mkinstalldirs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145160 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index acffe8e..61d5b97 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2009-03-28 Joseph Myers + + * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not + mkinstalldirs. + 2009-03-18 Jakub Jelinek * include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts. diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in index 2d82ebd..5815f73 100644 --- a/libcpp/Makefile.in +++ b/libcpp/Makefile.in @@ -236,7 +236,7 @@ endif # Rule for regenerating the message template. $(PACKAGE).pot: po/$(PACKAGE).pot po/$(PACKAGE).pot: $(libcpp_a_SOURCES) - mkinstalldirs $(srcdir)/po + $(mkinstalldirs) $(srcdir)/po $(XGETTEXT) --default-domain=$(PACKAGE) \ --keyword=_ --keyword=N_ \ --keyword=cpp_error:3 --keyword=cpp_errno:3 \