diff options
author | Maxim Koltsov <kolmax94@gmail.com> | 2010-11-08 15:10:14 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-11-08 15:10:54 +0000 |
commit | e5ec461c67820f050b049b41a630069f0efe96d1 (patch) | |
tree | d2b22755d4b77e816a92cd01b1eaa94a66315937 /po-docs | |
parent | b0a48fa4504f85baa484987f54d8f99703e3ed3b (diff) | |
download | libguestfs-e5ec461c67820f050b049b41a630069f0efe96d1.tar.gz libguestfs-e5ec461c67820f050b049b41a630069f0efe96d1.tar.xz libguestfs-e5ec461c67820f050b049b41a630069f0efe96d1.zip |
build: Don't try to rebuild po-docs/<lang> if no po4a.
Diffstat (limited to 'po-docs')
-rw-r--r-- | po-docs/ja/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/po-docs/ja/Makefile.am b/po-docs/ja/Makefile.am index 83a2340b..00822880 100644 --- a/po-docs/ja/Makefile.am +++ b/po-docs/ja/Makefile.am @@ -41,10 +41,10 @@ EXTRA_DIST = \ libguestfs-test-tool.pod \ $(wildcard virt-*.pl) -all-local: $(MANPAGES) - if HAVE_PO4A +all-local: $(MANPAGES) + guestfs.3: guestfs.pod guestfs-actions.pod guestfs-availability.pod guestfs-structs.pod sed \ -e '/@ACTIONS@/rguestfs-actions.pod' \ @@ -95,6 +95,10 @@ virt-%.1: virt-%.pl --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \ $< > $@-t && mv $@-t $@ +else + +all-local: + endif # XXX Can automake do this properly? |