texi2html-cvs
[Top][All Lists]
Advanced

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

[Texi2html-cvs] texi2html Makefile.am Makefile.in doc/Makefile....


From: Patrice Dumas
Subject: [Texi2html-cvs] texi2html Makefile.am Makefile.in doc/Makefile....
Date: Fri, 06 Nov 2009 23:03:26 +0000

CVSROOT:        /cvsroot/texi2html
Module name:    texi2html
Changes by:     Patrice Dumas <pertusus>        09/11/06 23:03:26

Modified files:
        .              : Makefile.am Makefile.in 
        doc            : Makefile.am Makefile.in 

Log message:
        Don't use builddir, it is not in older automake and it is useless anyway
        since it is a known relative directory.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texi2html/Makefile.am?cvsroot=texi2html&r1=1.57&r2=1.58
http://cvs.savannah.gnu.org/viewcvs/texi2html/Makefile.in?cvsroot=texi2html&r1=1.82&r2=1.83
http://cvs.savannah.gnu.org/viewcvs/texi2html/doc/Makefile.am?cvsroot=texi2html&r1=1.18&r2=1.19
http://cvs.savannah.gnu.org/viewcvs/texi2html/doc/Makefile.in?cvsroot=texi2html&r1=1.56&r2=1.57

Patches:
Index: Makefile.am
===================================================================
RCS file: /cvsroot/texi2html/texi2html/Makefile.am,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -b -r1.57 -r1.58
--- Makefile.am 1 Nov 2009 18:59:57 -0000       1.57
+++ Makefile.am 6 Nov 2009 23:03:24 -0000       1.58
@@ -164,16 +164,16 @@
 
 i18n/en: texi2html.pl texi2html.init T2h_i18n.pm examples/roff.init \
                  examples/noheaders.init $(texi2html_formats)
-       $(PERL) $(builddir)/manage_i18n.pl -d i18n -I . -I $(srcdir) template $^
+       $(PERL) manage_i18n.pl -d i18n -I . -I $(srcdir) template $^
 
 #i18n/de i18n/nl i18n/es i18n/no i18n/pt i18n/fr: i18n/en
 
 $(i18n_files): i18n/en
-       $(PERL) $(builddir)/manage_i18n.pl -d i18n -I . -I $(srcdir) update
+       $(PERL) manage_i18n.pl -d i18n -I . -I $(srcdir) update
 
 #translations.pl: i18n/de i18n/nl i18n/es i18n/no i18n/pt i18n/fr i18n/en
 translations.pl: $(dist_i18n_DATA) 
-       $(PERL) $(builddir)/manage_i18n.pl -d i18n -o $@ -I . -I $(srcdir) merge
+       $(PERL) manage_i18n.pl -d i18n -o $@ -I . -I $(srcdir) merge
 
 # update the po files, and install locally the .mo files for the in
 # source tests

Index: Makefile.in
===================================================================
RCS file: /cvsroot/texi2html/texi2html/Makefile.in,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -b -r1.82 -r1.83
--- Makefile.in 5 Nov 2009 22:55:06 -0000       1.82
+++ Makefile.in 6 Nov 2009 23:03:25 -0000       1.83
@@ -998,16 +998,16 @@
 
 i18n/en: texi2html.pl texi2html.init T2h_i18n.pm examples/roff.init \
                  examples/noheaders.init $(texi2html_formats)
-       $(PERL) $(builddir)/manage_i18n.pl -d i18n -I . -I $(srcdir) template $^
+       $(PERL) manage_i18n.pl -d i18n -I . -I $(srcdir) template $^
 
 #i18n/de i18n/nl i18n/es i18n/no i18n/pt i18n/fr: i18n/en
 
 $(i18n_files): i18n/en
-       $(PERL) $(builddir)/manage_i18n.pl -d i18n -I . -I $(srcdir) update
+       $(PERL) manage_i18n.pl -d i18n -I . -I $(srcdir) update
 
 #translations.pl: i18n/de i18n/nl i18n/es i18n/no i18n/pt i18n/fr i18n/en
 translations.pl: $(dist_i18n_DATA) 
-       $(PERL) $(builddir)/manage_i18n.pl -d i18n -o $@ -I . -I $(srcdir) merge
+       $(PERL) manage_i18n.pl -d i18n -o $@ -I . -I $(srcdir) merge
 
 # update the po files, and install locally the .mo files for the in
 # source tests

Index: doc/Makefile.am
===================================================================
RCS file: /cvsroot/texi2html/texi2html/doc/Makefile.am,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- doc/Makefile.am     1 Nov 2009 18:59:58 -0000       1.18
+++ doc/Makefile.am     6 Nov 2009 23:03:25 -0000       1.19
@@ -10,7 +10,7 @@
 
 # use the script out of the distribution NOT
 # an old one which is installed on the client.
-TEXI2HTML = $(builddir)/../texi2html
+TEXI2HTML = ../texi2html
 
 man_MANS = texi2html.1
 
@@ -31,7 +31,7 @@
            $(PERL) -x $(srcdir)/../texi2html.pl -V $<
 
 $(TEXI2HTML):
-       @(cd $(builddir)/../ && make texi2html)
+       @(cd ../ && make texi2html)
 
 texi2html.1: texi2html.1.in $(top_builddir)/config.status
        @echo Generating address@hidden

Index: doc/Makefile.in
===================================================================
RCS file: /cvsroot/texi2html/texi2html/doc/Makefile.in,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -b -r1.56 -r1.57
--- doc/Makefile.in     5 Nov 2009 22:55:08 -0000       1.56
+++ doc/Makefile.in     6 Nov 2009 23:03:25 -0000       1.57
@@ -222,7 +222,7 @@
 
 # use the script out of the distribution NOT
 # an old one which is installed on the client.
-TEXI2HTML = $(builddir)/../texi2html
+TEXI2HTML = ../texi2html
 man_MANS = texi2html.1
 EXTRA_DIST = \
        texi2html.1.in \
@@ -753,7 +753,7 @@
            $(PERL) -x $(srcdir)/../texi2html.pl -V $<
 
 $(TEXI2HTML):
-       @(cd $(builddir)/../ && make texi2html)
+       @(cd ../ && make texi2html)
 
 texi2html.1: texi2html.1.in $(top_builddir)/config.status
        @echo Generating address@hidden




reply via email to

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