diff options
author | Jürgen Hötzel <juergen@archlinux.org> | 2007-01-29 23:18:31 +0100 |
---|---|---|
committer | Jürgen Hötzel <juergen@archlinux.org> | 2007-01-29 23:18:31 +0100 |
commit | 13f9fc4d19661b75c6f9989082aaf2b222547fe7 (patch) | |
tree | 424414095c1220fd27a19ff611673bd97e19594c /doc/Makefile.am | |
parent | 1629355ef06c16c422fe959affde83552c96b5ae (diff) | |
download | pacman-13f9fc4d19661b75c6f9989082aaf2b222547fe7.tar.gz pacman-13f9fc4d19661b75c6f9989082aaf2b222547fe7.tar.xz |
* Fix building outside $(srcdir).
* Removed ./gen-mirrorlist.sh invocation from configure script:
Mirror-files are generated by make, not configure.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 78f0788b..3d85e7db 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -5,9 +5,10 @@ SUBDIRS = hu po4a: if HAS_PO4A @$(NORMAL_INSTALL) - po4a -k 0 po4a.cfg + po4a -k 0 --variable srcdir=$(srcdir) $(srcdir)/po4a.cfg endif +# DIST_SUBDIRS if HAS_MAN2HTML makepkg.8: man2html makepkg.8 > html/makepkg.8.html @@ -27,7 +28,7 @@ clean: man_MANS = pacman.8 makepkg.8 PKGBUILD.8 libalpm.3 if HAS_DOXYGEN -man_MANS += man3/*.3 +man_MANS += *.3 endif -EXTRA_DIST = $(man_MANS) +EXTRA_DIST = $(man_MANS) po4a.cfg |