summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornvdev <modestdev@gmail.com>2013-08-23 18:57:56 +0300
committernvdev <modestdev@gmail.com>2013-08-23 18:57:56 +0300
commit87ec5e7e01e526f2ff644c197e6bfff74b31af88 (patch)
treeaee5a49ae71ffe43612fc496bf88f40523789c07
parent771f4688e2a11eb414f02fd339e8b07f3377e8aa (diff)
downloadcouchdb-87ec5e7e01e526f2ff644c197e6bfff74b31af88.tar.gz
Fixed typos in Vagrantfile
-rw-r--r--Vagrantfile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 465d5a67f..4b5eee1c1 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -15,7 +15,7 @@ Vagrant::Config.run do |config|
if Dir.glob("#{File.dirname(__FILE__)}/.vagrant/machines/default/*/id").empty?
# install build-essential
pkg_cmd = "apt-get update -qq; apt-get install -q -y build-essential git "
- "autoconf autoconf-archive gnu-standards help2man textinfo; "
+ "autoconf autoconf-archive gnu-standards help2man texinfo; "
# Install erlang
pkg_cmd << "apt-get install -q -y erlang-base-hipe erlang-dev " \
@@ -26,8 +26,7 @@ Vagrant::Config.run do |config|
"curl libcurl4-gnutls-dev libtool; "
# doc dependencies
- pkg_cmd << "apt-get install -q -y apt-get install -q -y help2man " \
- "textinfo python-sphix python-pip; " \
+ pkg_cmd << "apt-get install -q -y help2man texinfo python-sphinx python-pip; " \
"pip install -U pygments; "
config.vm.provision :shell, :inline => pkg_cmd