summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorCorey Sheldon <linux-modder@users.noreply.github.com>2015-07-09 07:51:47 -0400
committerCorey Sheldon <linux-modder@users.noreply.github.com>2015-07-09 07:51:47 -0400
commitc6630513cda86500ee31496d3a2d76bf3c3bcac1 (patch)
tree3aecfa11c72870457901d243d658911b7151163a /INSTALL.md
parent970c2cccf3bc1629e46fc186f523dc89d05ea004 (diff)
Update info for Fedora
--Updated calls to package manager which is now dnf by default --Mention of using /etc/ld.so.conf directly which works and in most distros *SHOULD NOT* cause global override issues
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 1fa99100..5bdd1bdc 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -57,9 +57,10 @@ sudo apt-get install build-essential libtool autotools-dev automake checkinstall
57On Fedora: 57On Fedora:
58 58
59```bash 59```bash
60yum groupinstall "Development Tools" 60dnf groupinstall "Development Tools"
61yum install libtool autoconf automake check check-devel 61dnf install libtool autoconf automake check check-devel
62``` 62```
63Using dnf install @"Development Tools" is also valid and slightly shorter / cleaner way, also @"Rpm Development Tools" would carry the remaining dependencies listed here.
63 64
64On SunOS: 65On SunOS:
65 66
@@ -104,7 +105,7 @@ cd ..
104 105
105If 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:
106``` 107```
107echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf 108echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf // also just adding to /etc/ld.so.conf works
108sudo ldconfig 109sudo ldconfig
109``` 110```
110 111