diff options
author | Bruno Haible <bruno@clisp.org> | 2003-03-10 16:10:07 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:15 +0200 |
commit | 4dabf40884759aa2bc7de410121925bff0e64340 (patch) | |
tree | a0d1f975b1f2639162389a0902ec16e96c34be29 /gettext-runtime/po | |
parent | b35837633fb91a084e6e03812e06f0d6862a9d2e (diff) | |
download | external_gettext-4dabf40884759aa2bc7de410121925bff0e64340.zip external_gettext-4dabf40884759aa2bc7de410121925bff0e64340.tar.gz external_gettext-4dabf40884759aa2bc7de410121925bff0e64340.tar.bz2 |
Simplify MKINSTALLDIRS.
Diffstat (limited to 'gettext-runtime/po')
-rw-r--r-- | gettext-runtime/po/ChangeLog | 6 | ||||
-rw-r--r-- | gettext-runtime/po/Makefile.in.in | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gettext-runtime/po/ChangeLog b/gettext-runtime/po/ChangeLog index cea2a51..1690181 100644 --- a/gettext-runtime/po/ChangeLog +++ b/gettext-runtime/po/ChangeLog @@ -1,3 +1,9 @@ +2003-02-28 Bruno Haible <bruno@clisp.org> + + * Makefile.in.in (mkinstalldirs): Simplify. Prepending + "$(top_builddir)/" in the case of a relative $srcdir is now handled + in gettext.m4. + 2003-02-24 Bruno Haible <bruno@clisp.org> * de.po: Update from Karl Eichwalder <ke@suse.de>. diff --git a/gettext-runtime/po/Makefile.in.in b/gettext-runtime/po/Makefile.in.in index fa15e7f..cfe7e01 100644 --- a/gettext-runtime/po/Makefile.in.in +++ b/gettext-runtime/po/Makefile.in.in @@ -27,7 +27,7 @@ gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ -mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` +mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ |