From: Richard Jones Date: Wed, 13 Jan 2010 14:55:04 +0000 (+0000) Subject: Fix generation of HTML documentation for website. X-Git-Tag: 1.0.82~35 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=e28207d5ad7ed96e10467e38788239ef9690285e Fix generation of HTML documentation for website. --- diff --git a/Makefile.am b/Makefile.am index 38beecd..020d889 100644 --- a/Makefile.am +++ b/Makefile.am @@ -81,11 +81,11 @@ html/guestfs.3.html: src/guestfs.pod \ src/guestfs-structs.pod mkdir -p html sed \ - -e '/@ACTIONS@/rguestfs-actions.pod' \ + -e '/@ACTIONS@/rsrc/guestfs-actions.pod' \ -e 's/@ACTIONS@//' \ - -e '/@AVAILABILITY@/rguestfs-availability.pod' \ + -e '/@AVAILABILITY@/rsrc/guestfs-availability.pod' \ -e 's/@AVAILABILITY@//' \ - -e '/@STRUCTS@/rguestfs-structs.pod' \ + -e '/@STRUCTS@/rsrc/guestfs-structs.pod' \ -e 's/@STRUCTS@//' \ < $< | \ pod2html \ @@ -97,7 +97,7 @@ html/guestfs.3.html: src/guestfs.pod \ html/guestfish.1.html: fish/guestfish.pod fish/guestfish-actions.pod mkdir -p html sed \ - -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \ + -e '/@ACTIONS@/rfish/guestfish-actions.pod' -e 's/@ACTIONS@//' \ < $< | \ pod2html \ --css 'pod.css' \