From 6bd77a2549ff33ce722b344c811abe0abf898a03 Mon Sep 17 00:00:00 2001 From: cl34r Date: Tue, 19 Nov 2013 12:48:12 -0500 Subject: Fix instructions sudo echo "/usr/local/lib/" >> /etc/ld.so.conf.d/locallib.conf doesn't work so well... echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf should work better. --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 9eea323a..81db3a45 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -56,7 +56,7 @@ cd .. ``` If your default prefix is /usr/local and you happen to get an error that says "error while loading shared libraries: libtoxcore.so.0: cannot open shared object file: No such file or directory", then you can try running ```sudo ldconfig```. If that doesn't fix it, run: ``` -sudo echo "/usr/local/lib/" >> /etc/ld.so.conf.d/locallib.conf +echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf sudo ldconfig ``` -- cgit v1.2.3