From 1a6266756cb0c9bf345e542db68d4bab3ca8cdb3 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Mon, 16 Nov 2015 15:34:52 -0700 Subject: [PATCH] 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. --- admin/build-doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/build-doc b/admin/build-doc index 0b6e88eb81ed..74892321b8fb 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" -- 2.47.3