diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | man/Makefile.am | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,12 @@ 2007-02-20 Peter Jones <pjones@redhat.com> + * man/Makefile.am: docbook2man doesn't output the man page on standard + output, it outputs it to ${NAME%.sgml}.1 . So redirecting stdout to + ${NAME%.sgml}.1 gets "Done.\n" stuck somewhere in the middle of the + file. Don't do this. + +2007-02-20 Peter Jones <pjones@redhat.com> + * pm/hooks/20video: split resume/thaw out to another script * pm/hooks/99video: split resume/thaw out to another script diff --git a/man/Makefile.am b/man/Makefile.am index f867bc6..52ab087 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -8,10 +8,10 @@ EXTRA_DIST = \ $(man_MANS) pm-pmu.1: pm-pmu.sgml - docbook2man $? > $@ + docbook2man $? on_ac_power.1: on_ac_power.sgml - docbook2man $? > $@ + docbook2man $? clean-local : rm -f *~ |