Hi all,
the attached patch fixes portability warnings when using automake 1.10.
tested with make distcheck.
2007-04-15 Dalibor Topic <[EMAIL PROTECTED]>
* doc/Makefile.am: Fix portability warnings from
automake 1.10.
cheers,
dalibor topic
Index: doc/Makefile.am
===================================================================
RCS file: /sources/classpath/classpath/doc/Makefile.am,v
retrieving revision 1.10
diff -u -r1.10 Makefile.am
--- doc/Makefile.am 25 Mar 2007 15:45:56 -0000 1.10
+++ doc/Makefile.am 15 Apr 2007 17:43:26 -0000
@@ -4,10 +4,10 @@
info_TEXINFOS = cp-hacking.texinfo cp-vmintegration.texinfo cp-tools.texinfo
-%.dvi : %.texinfo
+.texinfo.dvi:
texi2dvi $<
-%.ps : %.dvi
+.dvi.ps:
dvips -o $@ $<
docs: cp-hacking.ps cp-vmintegration.ps cp-tools.ps $(TOOLS_MANFILES)
@@ -31,7 +31,7 @@
TEXI2POD = perl $(srcdir)/texi2pod.pl
STAMP = echo timestamp >
-%.1: %.pod
+.pod.1:
$(STAMP) $@
-($(POD2MAN) --section=1 $< > $(@).T$$$$ && \
mv -f $(@).T$$$$ $@) || \