]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
admin/build-doc: add lxml dependencies on debian 6610/head
authorKen Dreyer <kdreyer@redhat.com>
Mon, 16 Nov 2015 22:34:52 +0000 (15:34 -0700)
committerKen Dreyer <kdreyer@redhat.com>
Mon, 16 Nov 2015 22:34:52 +0000 (15:34 -0700)
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.

admin/build-doc

index 0b6e88eb81ed5cdadc43ceaf7e8fe030cea0c5d0..74892321b8fb215fb32e88093670f134e2f9138b 100755 (executable)
@@ -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"