diff options
author | Joseph Myers <joseph@codesourcery.com> | 2009-03-28 06:57:44 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2009-03-28 06:57:44 +0000 |
commit | f145021137196409197dd0bfd018f5da180cd64a (patch) | |
tree | f9800f6910bd3f50c50890e2d6442ea38929b760 | |
parent | f5b9c3604e138a67c7a5ee230e5c67c27f9523ac (diff) | |
download | gcc-f145021137196409197dd0bfd018f5da180cd64a.zip gcc-f145021137196409197dd0bfd018f5da180cd64a.tar.gz gcc-f145021137196409197dd0bfd018f5da180cd64a.tar.bz2 |
Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not mkinstalldirs.
* Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not
mkinstalldirs.
From-SVN: r145160
-rw-r--r-- | libcpp/ChangeLog | 5 | ||||
-rw-r--r-- | libcpp/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
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 <joseph@codesourcery.com> + + * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not + mkinstalldirs. + 2009-03-18 Jakub Jelinek <jakub@redhat.com> * 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 \ |