diff options
author | Jarad Olson <brotherdust+github@gmail.com> | 2018-05-15 19:50:34 +0200 |
---|---|---|
committer | Jarad Olson <brotherdust+github@gmail.com> | 2018-05-15 19:50:34 +0200 |
commit | 07b17fdbf756e549333315ecacf3721aa3957728 (patch) | |
tree | 31c85ff01a6a611f7ae5c4fd6e77bcae9395709c /doc/developer/building-frr-on-ubuntu1804.rst | |
parent | MPLS kernel module name change (diff) | |
download | frr-07b17fdbf756e549333315ecacf3721aa3957728.tar.xz frr-07b17fdbf756e549333315ecacf3721aa3957728.zip |
Change style of required packages list
The required packages list should be easier to parse. Updated the style so it's more similar to the ``./configure`` style later in the document.
Signed-off-by: Jarad Olson <brotherdust+github@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | doc/developer/building-frr-on-ubuntu1804.rst | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/doc/developer/building-frr-on-ubuntu1804.rst b/doc/developer/building-frr-on-ubuntu1804.rst index cc1087966..1d8d6cb42 100644 --- a/doc/developer/building-frr-on-ubuntu1804.rst +++ b/doc/developer/building-frr-on-ubuntu1804.rst @@ -8,10 +8,26 @@ Add packages: :: - apt-get install git autoconf automake libtool make gawk libreadline-dev \ - texinfo pkg-config libpam0g-dev libjson-c-dev bison flex \ - python-pytest libc-ares-dev python3-dev libsystemd-dev python-ipaddr \ - python3-sphinx + apt-get install \ + git \ + autoconf \ + automake \ + libtool \ + make \ + gawk \ + libreadline-dev \ + texinfo \ + pkg-config \ + libpam0g-dev \ + libjson-c-dev \ + bison \ + flex \ + python-pytest \ + libc-ares-dev \ + python3-dev \ + libsystemd-dev \ + python-ipaddr \ + python3-sphinx Get FRR, compile it and install it (from Git) --------------------------------------------- |