From e97f6eb08104b34c5c04823ef9e0525833e03d6f Mon Sep 17 00:00:00 2001 From: Yu Shengzuo Date: Thu, 20 Apr 2017 05:14:29 +0000 Subject: [PATCH] doc: correct the package name in ceph/admin/build-doc In document, it is called 'libxml2-devel', one of the dependent package of CentOS/RHEL7. But the 'build-doc' check 'libxml-devel'. And it id also called 'libxml2-devel' in software of yum repo . So correct the checked package name in ceph/admin/build-doc. Signed-off-by: Yu Shengzuo --- admin/build-doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/build-doc b/admin/build-doc index 5be6f66e878c2..0caa048767c8a 100755 --- a/admin/build-doc +++ b/admin/build-doc @@ -20,7 +20,7 @@ if command -v dpkg >/dev/null; then exit 1 fi elif command -v yum >/dev/null; then - for package in python-devel python-pip python-virtualenv doxygen ditaa ant libxml-devel libxslt-devel Cython graphviz; do + for package in python-devel python-pip python-virtualenv doxygen ditaa ant libxml2-devel libxslt-devel Cython graphviz; do if ! rpm -q $package >/dev/null ; then missing="${missing:+$missing }$package" fi -- 2.39.5