diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-07-16 18:56:57 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-07-16 18:56:57 +0100 |
commit | f2ea617e224cd82496e56a41b5878063d6f02e3d (patch) | |
tree | 7ff2d82dc35b4e66bfbb65fdf1462ee9fb9532c9 /examples | |
parent | c7d342a94a89324be2f568c940ba089fdd5aa0c0 (diff) | |
download | libguestfs-f2ea617e224cd82496e56a41b5878063d6f02e3d.tar.gz libguestfs-f2ea617e224cd82496e56a41b5878063d6f02e3d.tar.xz libguestfs-f2ea617e224cd82496e56a41b5878063d6f02e3d.zip |
build: Change calls to podwrapper.sh to use $(PODWRAPPER).
This will allow us to easily change the location of this
script in future.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 81f22747..3c325d43 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -118,7 +118,7 @@ noinst_DATA = \ guestfs-examples.3 $(top_builddir)/html/guestfs-examples.3.html: stamp-guestfs-examples.pod stamp-guestfs-examples.pod: guestfs-examples.pod create_disk.c inspect_vm.c - $(top_builddir)/podwrapper.sh \ + $(PODWRAPPER) \ --section 3 \ --man guestfs-examples.3 \ --html $(top_builddir)/html/guestfs-examples.3.html \ @@ -130,7 +130,7 @@ stamp-guestfs-examples.pod: guestfs-examples.pod create_disk.c inspect_vm.c guestfs-faq.1 $(top_builddir)/html/guestfs-faq.1.html: stamp-guestfs-faq.pod stamp-guestfs-faq.pod: guestfs-faq.pod - $(top_builddir)/podwrapper.sh \ + $(PODWRAPPER) \ --section 1 \ --man guestfs-faq.1 \ --html $(top_builddir)/html/guestfs-faq.1.html \ @@ -140,7 +140,7 @@ stamp-guestfs-faq.pod: guestfs-faq.pod guestfs-performance.1 $(top_builddir)/html/guestfs-performance.1.html: stamp-guestfs-performance.pod stamp-guestfs-performance.pod: guestfs-performance.pod - $(top_builddir)/podwrapper.sh \ + $(PODWRAPPER) \ --section 1 \ --man guestfs-performance.1 \ --html $(top_builddir)/html/guestfs-performance.1.html \ @@ -150,7 +150,7 @@ stamp-guestfs-performance.pod: guestfs-performance.pod guestfs-recipes.1 $(top_builddir)/html/guestfs-recipes.1.html: stamp-guestfs-recipes.pod stamp-guestfs-recipes.pod: guestfs-recipes.pod - $(top_builddir)/podwrapper.sh \ + $(PODWRAPPER) \ --section 1 \ --man guestfs-recipes.1 \ --html $(top_builddir)/html/guestfs-recipes.1.html \ @@ -160,7 +160,7 @@ stamp-guestfs-recipes.pod: guestfs-recipes.pod guestfs-testing.1 $(top_builddir)/html/guestfs-testing.1.html: stamp-guestfs-testing.pod stamp-guestfs-testing.pod: guestfs-testing.pod - $(top_builddir)/podwrapper.sh \ + $(PODWRAPPER) \ --section 1 \ --man guestfs-testing.1 \ --html $(top_builddir)/html/guestfs-testing.1.html \ |