summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorCorey Sheldon <linux-modder@users.noreply.github.com>2015-07-09 08:27:41 -0400
committerCorey Sheldon <linux-modder@users.noreply.github.com>2015-07-09 08:27:41 -0400
commitf0bdb94a3b25dffc668bd822e6ef9e9394c69ff6 (patch)
tree42f32ed442b800e41f351da8cfdccd30207a272b /INSTALL.md
parentc6630513cda86500ee31496d3a2d76bf3c3bcac1 (diff)
Update INSTALL.md
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 5bdd1bdc..3ea67461 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -105,7 +105,11 @@ cd ..
105 105
106If 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: 106If 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:
107``` 107```
108echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf // also just adding to /etc/ld.so.conf works 108echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallibs.conf
109
110OR in the event you have no locallibs.conf file run:
111
112echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf
109sudo ldconfig 113sudo ldconfig
110``` 114```
111 115