summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorKen Dreyer <kdreyer@redhat.com>2015-11-16 15:34:52 -0700
committerKen Dreyer <kdreyer@redhat.com>2015-11-16 15:34:52 -0700
commit1a6266756cb0c9bf345e542db68d4bab3ca8cdb3 (patch)
tree63f5301ca6982ae4766c718f657c62c336feb7f1 /admin
parent6bf5c8755d7f99ec49025bc5e2a4c2cf973f20c9 (diff)
downloadceph-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-xadmin/build-doc2
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"