Revision b3b875657f5fba0d11b86bd6dc4ff8e11bd6a441 authored by Siying Dong on 29 November 2016, 17:06:10 UTC, committed by Facebook Github Bot on 29 November 2016, 17:09:14 UTC
Summary:
"make analyze" complains the assignment is not useful. Remove it.
Closes https://github.com/facebook/rocksdb/pull/1581

Differential Revision: D4241697

Pulled By: siying

fbshipit-source-id: 178f67a
1 parent 4f6e89b
Raw File
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

  config.vm.define "linux32" do |linux32|
    linux32.vm.box = "hansode/centos-5.6-i386"
  end

  config.vm.define "linux64" do |linux64|
    linux64.vm.box = "hansode/centos-5.6-x86_64"
  end

  config.vm.provider "virtualbox" do |v|
    v.memory = 2048
    v.cpus = 4
  end

  config.vm.provision :shell, path: "build-linux-centos.sh"
  config.vm.synced_folder "../target", "/rocksdb-build"
  config.vm.synced_folder "../..", "/rocksdb", type: "rsync"
  config.vm.boot_timeout = 1200
end
back to top