texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[5305] Remove dependency on mdate-sh, that was not used.


From: Patrice Dumas
Subject: [5305] Remove dependency on mdate-sh, that was not used.
Date: Sun, 11 Aug 2013 14:17:40 +0000

Revision: 5305
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5305
Author:   pertusus
Date:     2013-08-11 14:17:39 +0000 (Sun, 11 Aug 2013)
Log Message:
-----------
Remove dependency on mdate-sh, that was not used.
Update for newer automake, depend on autoconf 2.60.

Modified Paths:
--------------
    trunk/texi2html/Makefile.am
    trunk/texi2html/configure.ac
    trunk/texi2html/test/Makefile.am

Modified: trunk/texi2html/Makefile.am
===================================================================
--- trunk/texi2html/Makefile.am 2013-08-11 13:47:32 UTC (rev 5304)
+++ trunk/texi2html/Makefile.am 2013-08-11 14:17:39 UTC (rev 5305)
@@ -196,7 +196,7 @@
 # msgexec: present charset "CHARSET" is not a portable encoding name
 # (Actually we write out the value of $<, but that's what it is.)
 i18n/en.thl i18n/: $(po_document_dir)/po_document/$(PACKAGE)_document.pot
-       $(mkdir_p) i18n
+       $(MKDIR_P) i18n
        if test '$(USE_NLS)' = 'yes'; then \
          for file in "$(srcdir)/$(po_document_dir)/po_document/"*".po"; do \
            lang=`basename "$$file" .po | sed 's/\..*//'`; \
@@ -213,7 +213,7 @@
        fi
 
 i18n_ref:
-       $(mkdir_p) i18n_ref
+       $(MKDIR_P) i18n_ref
 
 # Should be done manually, otherwise it is left after make distclean
 # in a out of source build directory.
@@ -236,7 +236,7 @@
        rm -rf locales
        for file in "$(srcdir)/$(po_document_dir)/po_document/"*.po; do \
          basename=`basename "$$file" .po` ; \
-         $(mkdir_p) "locales/$$basename/LC_MESSAGES/" ; \
+         $(MKDIR_P) "locales/$$basename/LC_MESSAGES/" ; \
          if test '$(USE_NLS)' = 'yes'; then \
            $(MSGFMT) "$$file" -o 
"locales/$$basename/LC_MESSAGES/texi2html_document.mo" ; \
          else \
@@ -256,9 +256,9 @@
        -rm -rf locales i18n
 
 install-data-local: i18n
-       $(mkdir_p) $(DESTDIR)$(pkgdatadir)/i18n
+       $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/i18n
        $(INSTALL_DATA) i18n/*.thl  $(DESTDIR)$(pkgdatadir)/i18n
-       $(mkdir_p) $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/Recode \
+       $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/Recode \
          $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/RecodeData
        $(INSTALL_DATA) $(srcdir)/lib/libintl-perl/lib/Locale/*.pm \
          $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale
@@ -266,10 +266,10 @@
          $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/Recode
        $(INSTALL_DATA) $(srcdir)/lib/libintl-perl/lib/Locale/RecodeData/*.pm \
          $(DESTDIR)$(pkgdatadir)/lib/libintl-perl/lib/Locale/RecodeData
-       $(mkdir_p) 
$(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode
+       $(MKDIR_P) 
$(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode
        $(INSTALL_DATA) 
$(srcdir)/lib/Unicode-EastAsianWidth/lib/Unicode/EastAsianWidth.pm \
         $(DESTDIR)$(pkgdatadir)/lib/Unicode-EastAsianWidth/lib/Unicode
-       $(mkdir_p) $(DESTDIR)$(pkgdatadir)/lib/Text-Unidecode/lib/Text/Unidecode
+       $(MKDIR_P) $(DESTDIR)$(pkgdatadir)/lib/Text-Unidecode/lib/Text/Unidecode
        $(INSTALL_DATA) $(srcdir)/lib/Text-Unidecode/lib/Text/Unidecode.pm \
          $(DESTDIR)$(pkgdatadir)/lib/Text-Unidecode/lib/Text
        $(INSTALL_DATA) $(srcdir)/lib/Text-Unidecode/lib/Text/Unidecode/*.pm \

Modified: trunk/texi2html/configure.ac
===================================================================
--- trunk/texi2html/configure.ac        2013-08-11 13:47:32 UTC (rev 5304)
+++ trunk/texi2html/configure.ac        2013-08-11 14:17:39 UTC (rev 5305)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_PREREQ(2.53)
+AC_PREREQ(2.60)
 AC_INIT([texi2html], [5.0], address@hidden)
 dnl 1.9 because we need tar-ustar, and tar-ustar because we have long 
 dnl filenames for some test files
@@ -17,19 +17,13 @@
 AM_GNU_GETTEXT_VERSION([0.18.3])
 
 dnl Misc variable settings
-PACKAGE_DATE=`${SHELL} "$srcdir"/mdate-sh "$srcdir"/configure.ac`
-AC_SUBST([PACKAGE_DATE])
+dnl PACKAGE_DATE=`${SHELL} "$srcdir"/mdate-sh "$srcdir"/configure.ac`
+dnl AC_SUBST([PACKAGE_DATE])
 
 dnl Checks for programs.
 AC_PROG_LN_S
-AM_PROG_MKDIR_P
+AC_PROG_MKDIR_P
 
-# Happens with some automake version
-if test z"$MKDIR_P" = 'z'; then
-  MKDIR_P=$mkdir_p
-  AC_SUBST([MKDIR_P])
-fi
-
 AC_ARG_VAR([PERL], [The path to the 'perl' executable.])
 AC_PATH_PROG([PERL], [perl], [/usr/bin/env perl], [/opt/perl5/bin:"$PATH"])
 

Modified: trunk/texi2html/test/Makefile.am
===================================================================
--- trunk/texi2html/test/Makefile.am    2013-08-11 13:47:32 UTC (rev 5304)
+++ trunk/texi2html/test/Makefile.am    2013-08-11 14:17:39 UTC (rev 5305)
@@ -57,7 +57,7 @@
 all-local:
        for dir in $(htmlxref_cnf_tests); do \
                if [ -f "$(srcdir)/$$dir/htmlxref.cnf-texinfo" ]; then \
-                       $(mkdir_p) $$dir/.texinfo/ ; \
+                       $(MKDIR_P) $$dir/.texinfo/ ; \
                        ${INSTALL_DATA} "$(srcdir)/$$dir/htmlxref.cnf-texinfo" 
$$dir/.texinfo/ ; \
                fi; \
                if [ -f $(srcdir)/$$dir/htmlxref.cnf-ref ]; then \




reply via email to

[Prev in Thread] Current Thread [Next in Thread]