diff options
author | Ken Dreyer <kdreyer@redhat.com> | 2015-11-16 15:34:52 -0700 |
---|---|---|
committer | Ken Dreyer <kdreyer@redhat.com> | 2015-11-16 15:34:52 -0700 |
commit | 1a6266756cb0c9bf345e542db68d4bab3ca8cdb3 (patch) | |
tree | 63f5301ca6982ae4766c718f657c62c336feb7f1 /admin | |
parent | 6bf5c8755d7f99ec49025bc5e2a4c2cf973f20c9 (diff) | |
download | ceph-1a6266756cb0c9bf345e542db68d4bab3ca8cdb3.tar.gz |
admin/build-doc: add lxml dependencies on debian
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.
Diffstat (limited to 'admin')
-rwxr-xr-x | admin/build-doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/build-doc b/admin/build-doc index 0b6e88eb81e..74892321b8f 100755 --- a/admin/build-doc +++ b/admin/build-doc @@ -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" |