diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-10-18 11:42:55 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-10-18 11:42:55 +0000 |
commit | b26d162d1802ac63e567143a02c5413625ac8069 (patch) | |
tree | 45666c68eb5fe86fabfd55f14b272bb35fd2020f /doc | |
parent | Added missing space after the '1' in '[[ 0 -gt 1]]' which caused an unexpecte... (diff) | |
download | eselect-b26d162d1802ac63e567143a02c5413625ac8069.tar.gz eselect-b26d162d1802ac63e567143a02c5413625ac8069.tar.bz2 eselect-b26d162d1802ac63e567143a02c5413625ac8069.zip |
Dont assume rst2html is installed as rst2html.py. Added configure check for rst2html as most other distro's/OS's install it w/o the .py extension. Also dont bail if portageq isnt found, as eselect is not just supposed to work on Gentoo boxen.
svn path=/trunk/; revision=226
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 4c8644a..4fe6a3f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -5,7 +5,7 @@ noinst_DATA = $(foreach f, $(doc_files), $(f).txt) html: $(foreach f, $(doc_files), $(f).html ) %.html : %.txt - rst2html.py < $? > $@ + @RST2HTML@ < $? > $@ CLEANFILES = $(foreach f, $(doc_files), $(f).html) MAINTAINERCLEANFILES = Makefile.in |