summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcl34r <an0n102968@riseup.net>2013-11-19 12:48:12 -0500
committercl34r <an0n102968@riseup.net>2013-11-19 12:48:12 -0500
commit6bd77a2549ff33ce722b344c811abe0abf898a03 (patch)
tree0ea0afa4f546d7aa547e8dedae12562e25c14612
parent64aff6bb8582462f4267265ed2462470d288931d (diff)
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.
-rw-r--r--INSTALL.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 9eea323a..81db3a45 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -56,7 +56,7 @@ cd ..
56``` 56```
57If 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: 57If 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:
58``` 58```
59sudo echo "/usr/local/lib/" >> /etc/ld.so.conf.d/locallib.conf 59echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf
60sudo ldconfig 60sudo ldconfig
61``` 61```
62 62