[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
gettext: prepare Makefile.in.in for next Automake version
From: |
Ralf Wildenhues |
Subject: |
gettext: prepare Makefile.in.in for next Automake version |
Date: |
Wed, 16 Aug 2006 20:21:13 +0200 |
User-agent: |
Mutt/1.5.12-2006-07-14 |
The next Automake version (1.10) will make use of Autoconf-2.60's macro
AC_PROG_MKDIR_P in the macro AM_PROG_MKDIR_P, thus `$(mkdir_p)' may be
expressed in terms of `$(MKDIR_P)'. Since gettext's Makefile.in.in (and
thus packages that use gettext) in general rely on the definition
provided by AM_PROG_MKDIR_P, the patches below are necessary to keep
things working properly.
Apologies for not having checked this earlier (before gettext-0.15); it
is likely to generate a share of bug reports when Automake-1.10 is
released before the next Gettext release. Another possibility would be
to back out the relevant change of AM_PROG_MKDIR_P for Automake-1.10;
what do you think?
Cheers,
Ralf
gettext-runtime/po:
2006-08-16 Ralf Wildenhues <address@hidden>
* Makefile.in.in (MKDIR_P): New variable. Needed by $(mkdir_p)
with Automake-1.10.
gettext-tools/po:
2006-08-16 Ralf Wildenhues <address@hidden>
* Makefile.in.in (MKDIR_P): New variable. Needed by $(mkdir_p)
with Automake-1.10.
Index: gettext-runtime/po/Makefile.in.in
===================================================================
RCS file: /cvsroot/gettext/gettext/gettext-runtime/po/Makefile.in.in,v
retrieving revision 1.23
diff -u -r1.23 Makefile.in.in
--- gettext-runtime/po/Makefile.in.in 12 Jun 2006 13:42:56 -0000 1.23
+++ gettext-runtime/po/Makefile.in.in 16 Aug 2006 16:28:25 -0000
@@ -31,6 +31,7 @@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
mkinstalldirs = $(SHELL) @install_sh@ -d
+MKDIR_P = @MKDIR_P@
mkdir_p = @mkdir_p@
GMSGFMT_ = @GMSGFMT@
Index: gettext-tools/po/Makefile.in.in
===================================================================
RCS file: /cvsroot/gettext/gettext/gettext-tools/po/Makefile.in.in,v
retrieving revision 1.24
diff -u -r1.24 Makefile.in.in
--- gettext-tools/po/Makefile.in.in 12 Jun 2006 13:42:56 -0000 1.24
+++ gettext-tools/po/Makefile.in.in 16 Aug 2006 16:28:25 -0000
@@ -31,6 +31,7 @@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
mkinstalldirs = $(SHELL) @install_sh@ -d
+MKDIR_P = @MKDIR_P@
mkdir_p = @mkdir_p@
GMSGFMT_ = @GMSGFMT@
- gettext: prepare Makefile.in.in for next Automake version,
Ralf Wildenhues <=