# # # patch "ChangeLog" # from [d9fab5d3f58a65731f716612ed5fe327635c80f9] # to [f188e4223aaddd79ae59184fb89d59756d27edea] # # patch "Makefile.am" # from [d29d6ce43e67d3e7b8c1a221f4876d4675695d60] # to [b4dc40245e2c7f606f0eade43db74b996b7585c1] # ============================================================ --- ChangeLog d9fab5d3f58a65731f716612ed5fe327635c80f9 +++ ChangeLog f188e4223aaddd79ae59184fb89d59756d27edea @@ -1,3 +1,9 @@ +2006-04-14 Julio M. Merino Vidal + + * Makefile.am: Use sed instead of perl to add the stylesheet + reference in HTML files. Perl is not available in some systems + by default so this avoids an extra build-time dependency. + 2006-04-12 Nathaniel Smith * unix/process.cc (read_umask): New function. ============================================================ --- Makefile.am d29d6ce43e67d3e7b8c1a221f4876d4675695d60 +++ Makefile.am b4dc40245e2c7f606f0eade43db74b996b7585c1 @@ -582,11 +582,10 @@ cp $(srcdir)/texinfo.css .; \ fi makeinfo -I $(srcdir) --no-split --no-headers --output $@ --html $< - perl -i.perlbak -pe 's@@\n@' $@ - rm -f address@hidden + cp $@ address@hidden + sed -e 's,,,' address@hidden >$@ + rm -f address@hidden -# The .perlbak thing is needed, otherwise the perl executions fails on MinGW - html: monotone.texi version.texi std_hooks.lua texinfo.css if $(CHECK_SRCDIR_EQ_BUILDDIR); then :; else \ cp -r $(srcdir)/figures .; \ @@ -595,6 +594,8 @@ cp -r $(srcdir)/figures $@ cp $(srcdir)/texinfo.css $@ makeinfo -I $(srcdir) --number-sections --html --output $@ $< + for f in $@/*.html; do \ + cp $$f $$f.bak; \ + sed -e 's,,,' $$f.bak >$$f; \ + rm -f $$f.bak; \ + done - perl -i.perlbak -pe 's@@\n@' $@/*.html - rm -f $@/*.perlbak -