From 78f6b619904ae6c87426ce0ae5a1d07e74037cf4 Mon Sep 17 00:00:00 2001
From: Jinesh Choksi <jinesh-choksi@users.noreply.github.com>
Date: Wed, 2 Mar 2016 10:54:37 +0000
Subject: [PATCH] On RHEL/CentOS 6 needed additional dependencies to build RPM

To build an RPM on RHEL 6, we needed asciidoc, git and python-setuptools in addition to the rpm-build/make and python2-devel packages.
---
 docsite/rst/intro_installation.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docsite/rst/intro_installation.rst b/docsite/rst/intro_installation.rst
index d132752f36a..0859c4ce2a7 100644
--- a/docsite/rst/intro_installation.rst
+++ b/docsite/rst/intro_installation.rst
@@ -197,7 +197,7 @@ Fedora users can install Ansible directly, though if you are using RHEL or CentO
     # install the epel-release RPM if needed on CentOS, RHEL, or Scientific Linux
     $ sudo yum install ansible
 
-You can also build an RPM yourself.  From the root of a checkout or tarball, use the ``make rpm`` command to build an RPM you can distribute and install. Make sure you have ``rpm-build``, ``make``, and ``python2-devel`` installed.
+You can also build an RPM yourself.  From the root of a checkout or tarball, use the ``make rpm`` command to build an RPM you can distribute and install. Make sure you have ``rpm-build``, ``make``, ``asciidoc``, ``git``, ``python-setuptools`` and ``python2-devel`` installed.
 
 .. code-block:: bash