From 72e6000947154a3363e146bf24e2e8fc43f5c577 Mon Sep 17 00:00:00 2001 From: Doogie Lee Date: Mon, 3 Apr 2017 11:58:00 -0700 Subject: [PATCH] fixed misses on Centos library installation instructions Summary: Following the instructions on INSTALL.md, I found some errors while installing gflags and zstandard libraries on Centos and fixed them. Thanks :) Closes https://github.com/facebook/rocksdb/pull/2077 Differential Revision: D4820804 Pulled By: ajkr fbshipit-source-id: db4abb3 --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 64e78412f..384c98a17 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -59,8 +59,8 @@ makes use of SSE4, add 'USE_SSE=1' before your make commands, like this: `USE_SS * Install gflags: git clone https://github.com/gflags/gflags.git - git checkout v2.0 cd gflags + git checkout v2.0 ./configure && make && sudo make install * Install snappy: @@ -83,7 +83,7 @@ makes use of SSE4, add 'USE_SSE=1' before your make commands, like this: `USE_SS * Install zstandard: wget https://github.com/facebook/zstd/archive/v1.1.3.tar.gz - mv v1.1.3.tar.gz zstandard-1.1.3.tar.gz + mv v1.1.3.tar.gz zstd-1.1.3.tar.gz tar zxvf zstd-1.1.3.tar.gz cd zstd-1.1.3 make && sudo make install -- GitLab