]> git.puffer.fish Git - mirror/frr.git/commitdiff
Change style of required packages list
authorJarad Olson <brotherdust+github@gmail.com>
Tue, 15 May 2018 17:50:34 +0000 (11:50 -0600)
committerJarad Olson <brotherdust+github@gmail.com>
Tue, 15 May 2018 17:50:34 +0000 (11:50 -0600)
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>
doc/developer/building-frr-on-ubuntu1804.rst

index cc1087966a2564232e48b6fa3ef6cecb32184e76..1d8d6cb42f17dc47a2f6919a98d0741904c30471 100644 (file)
@@ -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)
 ---------------------------------------------