Skip to content

Commit

Permalink
Merge pull request #4 from byronpc/master
Browse files Browse the repository at this point in the history
Fix libuv detection for centos
  • Loading branch information
silviucpp committed Jul 14, 2015
2 parents b57160d + 5c4c0fc commit 19a139b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ case $OS in
CentOS)
echo "Linux, CentOS"
sudo yum -y install automake cmake gcc-c++ git libtool openssl-devel wget
if echo "$(ldconfig -p | grep libuv)"
OUTPUT=`ldconfig -p | grep libuv`
if [[ $(echo $OUTPUT) != "" ]]
then echo "libuv has already been installed"
else
pushd /tmp
Expand Down

0 comments on commit 19a139b

Please sign in to comment.