Displaying 2 results from an estimated 2 matches for "rguestfs".
Did you mean:
guestfs
2010 Sep 11
1
Remaining syntax-check errors
...kefile.am:109: -e 's/@STRUCTS@//' \
Makefile.am:120: -e '/@ACTIONS@/rfish/guestfish-actions.pod' -e 's/@ACTIONS@//' \
fish/Makefile.am:712: -e '/@ACTIONS@/rguestfish-actions.pod' -e 's/@ACTIONS@//' \
po-docs/ja/Makefile.am:1667: -e '/@ACTIONS@/rguestfs-actions.pod' \
po-docs/ja/Makefile.am:1668: -e 's/@ACTIONS@//' \
po-docs/ja/Makefile.am:1669: -e '/@AVAILABILITY@/rguestfs-availability.pod' \
po-docs/ja/Makefile.am:1670: -e 's/@AVAILABILITY@//' \
po-docs/ja/Makefile.am:1671: -e '/@STRUCTS@/rguestfs-stru...
2010 Sep 02
2
[PATCH] Allow manual pages and POD files to be translated.
...= \
+ guestfs.3 \
+ guestfish.1 \
+ libguestfs-test-tool.1 \
+ guestmount.1 \
+ $(patsubst %.pl,%.1,$(wildcard virt-*.pl))
+
+EXTRA_DIST = $(MANPAGES)
+
+all-local: $(MANPAGES)
+
+guestfs.3: guestfs.pod guestfs-actions.pod guestfs-availability.pod guestfs-structs.pod
+ sed \
+ -e '/@ACTIONS@/rguestfs-actions.pod' \
+ -e 's/@ACTIONS@//' \
+ -e '/@AVAILABILITY@/rguestfs-availability.pod' \
+ -e 's/@AVAILABILITY@//' \
+ -e '/@STRUCTS@/rguestfs-structs.pod' \
+ -e 's/@STRUCTS@//' \
+ < $< | \
+ $(POD2MAN) -u \
+ --section 3 \
+ -c &quo...