diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-04-11 10:10:38 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-04-11 10:10:38 +0200 |
commit | 4b77ed3e2ae60ac5577a850b4c9c7803f01069f2 (patch) | |
tree | 125ed697023ded04729cdfa6ab510a94fb2192e6 | |
parent | 6efde6381088d464264457b678b856c940d9c4d6 (diff) | |
download | dabmux-4b77ed3e2ae60ac5577a850b4c9c7803f01069f2.tar.gz dabmux-4b77ed3e2ae60ac5577a850b4c9c7803f01069f2.tar.bz2 dabmux-4b77ed3e2ae60ac5577a850b4c9c7803f01069f2.zip |
Remove trailing spaces and be explicit about clone command line
-rw-r--r-- | INSTALL.md | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -37,24 +37,28 @@ that did not yet make its way into a release, you can clone the *next* branch from the repository. * Download and install the dependencies as above -* Clone the git repository +* Clone the git repository, master branch - % git clone [-b next] https://github.com/Opendigitalradio/ODR-DabMux.git - % cd ODR-DabMux/ - -* Bootstrap autotools: + % git clone https://github.com/Opendigitalradio/ODR-DabMux.git + +* or next branch + + % git clone -b next https://github.com/Opendigitalradio/ODR-DabMux.git +* Bootstrap autotools: + + % cd ODR-DabMux/ % ./bootstrap.sh -* Run the configure script +* Run the configure script % ./configure -* Build ODR-DabMux +* Build ODR-DabMux % make - -* Install ODR-DabMux (as root) + +* Install ODR-DabMux (as root) % sudo make install |