summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-18 06:29:41 -0700
committerirungentoo <irungentoo@gmail.com>2013-08-18 06:29:41 -0700
commit3aaa144b90a50caf69fcd8a982739cf852ad47c2 (patch)
treee514faec4804980e9829f74e09d89b927fb5ee00 /INSTALL.md
parent5e0a1328efadf3b2ddb48d2679f16684ac3e19f9 (diff)
parent847d6cd07abc059ea815454d7fb563ae00a81fcf (diff)
Merge pull request #488 from kongr45gpen/patch-1
INSTALL.md: cd to the previous directory after installing libsodium
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 3d01d562..53ce5156 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -37,6 +37,7 @@ git checkout tags/0.4.2
37./configure && make check 37./configure && make check
38sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc 38sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc
39sudo ldconfig 39sudo ldconfig
40cd ..
40``` 41```
41 42
42Or if checkinstall is not easily available for your distribution (e.g. Fedora), 43Or if checkinstall is not easily available for your distribution (e.g. Fedora),
@@ -50,6 +51,7 @@ git checkout tags/0.4.2
50./configure 51./configure
51make check 52make check
52sudo make install 53sudo make install
54cd ..
53``` 55```
54 56
55 57