Skip to content

Commit

Permalink
admin/build-doc: add lxml dependencies on debian
Browse files Browse the repository at this point in the history
Some parts of the docs require libxml2 in order to build. We were
already checking for these lxml dependencies on Fedora; check for the
dependencies on Ubuntu as well.
  • Loading branch information
ktdreyer committed Nov 16, 2015
1 parent 6bf5c87 commit 1a62667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/build-doc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ TOPDIR=`pwd`
install -d -m0755 build-doc

if command -v dpkg >/dev/null; then
for package in python-dev python-pip python-virtualenv doxygen ditaa ant; do
for package in python-dev python-pip python-virtualenv doxygen ditaa ant libxml2-dev libxslt1-dev; do
if [ "$(dpkg --status -- $package|sed -n 's/^Status: //p')" != "install ok installed" ]; then
# add a space after old values
missing="${missing:+$missing }$package"
Expand Down

0 comments on commit 1a62667

Please sign in to comment.