aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-08-12 18:29:52 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-27 19:33:14 -0500
commita25dba179d82a9b71128a900f14c5f5be4236a9c (patch)
tree59101ff4747d4ef8427893c7b0d458a2b4113b31 /configure
parentAdd build_docs to new feature convention (diff)
downloadqemu-kvm-a25dba179d82a9b71128a900f14c5f5be4236a9c.tar.gz
qemu-kvm-a25dba179d82a9b71128a900f14c5f5be4236a9c.tar.bz2
qemu-kvm-a25dba179d82a9b71128a900f14c5f5be4236a9c.zip
Rename build_docs to docs
All other features are named foo and enabled with --enable-foo. Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 10 insertions, 10 deletions
diff --git a/configure b/configure
index 3cf1cb86d..7ef42ea3b 100755
--- a/configure
+++ b/configure
@@ -181,7 +181,7 @@ bluez=""
brlapi=""
curl=""
curses=""
-build_docs=""
+docs=""
nptl=""
vde=""
vnc_tls=""
@@ -522,9 +522,9 @@ for opt do
;;
--with-pkgversion=*) pkgversion=" ($optarg)"
;;
- --disable-docs) build_docs="no"
+ --disable-docs) docs="no"
;;
- --enable-docs) build_docs="yes"
+ --enable-docs) docs="yes"
;;
*) echo "ERROR: unknown option $opt"; show_help="yes"
;;
@@ -1410,15 +1410,15 @@ if compile_prog "" "" ; then
fi
# Check if tools are available to build documentation.
-if test "$build_docs" != "no" ; then
+if test "$docs" != "no" ; then
if test -x "`which texi2html 2>/dev/null`" -a \
-x "`which pod2man 2>/dev/null`" ; then
- build_docs=yes
+ docs=yes
else
- if test "$build_docs" = "yes" ; then
- feature_not_found "build_docs"
+ if test "$docs" = "yes" ; then
+ feature_not_found "docs"
fi
- build_docs=no
+ docs=no
fi
fi
@@ -1593,7 +1593,7 @@ fi
echo "xen support $xen"
echo "brlapi support $brlapi"
echo "bluez support $bluez"
-echo "Documentation $build_docs"
+echo "Documentation $docs"
[ ! -z "$uname_release" ] && \
echo "uname -r $uname_release"
echo "NPTL support $nptl"
@@ -1722,7 +1722,7 @@ if [ "$source_path_used" = "yes" ]; then
echo "VPATH=$source_path" >> $config_host_mak
fi
echo "TARGET_DIRS=$target_list" >> $config_host_mak
-if [ "$build_docs" = "yes" ] ; then
+if [ "$docs" = "yes" ] ; then
echo "BUILD_DOCS=yes" >> $config_host_mak
fi
if test "$sdl" = "yes" ; then