diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-10-03 09:15:37 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-10-03 09:22:45 +0100 |
commit | 4a4ca0c01da3307b69fc4925c5f2ece1e728d4b3 (patch) | |
tree | 0812e2e2a611a9dc71f18d6d749f1d619e362695 /src | |
parent | df2469a48f4641bdfe26a4179dd946df190fa970 (diff) | |
download | libguestfs-4a4ca0c01da3307b69fc4925c5f2ece1e728d4b3.tar.gz libguestfs-4a4ca0c01da3307b69fc4925c5f2ece1e728d4b3.tar.xz libguestfs-4a4ca0c01da3307b69fc4925c5f2ece1e728d4b3.zip |
syntax: Use __PATTERNS__ instead of @PATTERNS@ in podwrapper man pages.
It is slightly dangerous to use @PATTERNS@, since these might
be substituted by autoconf when they appear in Makefile.am files.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 6 | ||||
-rw-r--r-- | src/guestfs.pod | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index ed170b93..91f1c03f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -224,9 +224,9 @@ stamp-guestfs.pod: guestfs.pod \ --section 3 \ --man guestfs.3 \ --html $(top_builddir)/html/guestfs.3.html \ - --insert $(srcdir)/guestfs-actions.pod:@ACTIONS@ \ - --insert $(srcdir)/guestfs-availability.pod:@AVAILABILITY@ \ - --insert $(srcdir)/guestfs-structs.pod:@STRUCTS@ \ + --insert $(srcdir)/guestfs-actions.pod:__ACTIONS__ \ + --insert $(srcdir)/guestfs-availability.pod:__AVAILABILITY__ \ + --insert $(srcdir)/guestfs-structs.pod:__STRUCTS__ \ --license LGPLv2+ \ $< touch $@ diff --git a/src/guestfs.pod b/src/guestfs.pod index f276b94e..2b33bf32 100644 --- a/src/guestfs.pod +++ b/src/guestfs.pod @@ -1788,11 +1788,11 @@ This returns the current out of memory handler. =head1 API CALLS -@ACTIONS@ +__ACTIONS__ =head1 STRUCTURES -@STRUCTS@ +__STRUCTS__ =head1 AVAILABILITY @@ -1803,7 +1803,7 @@ the following groups of functions. This test queries the appliance to see if the appliance you are currently using supports the functionality. -@AVAILABILITY@ +__AVAILABILITY__ =head2 FILESYSTEM AVAILABLE |