]> git.ozlabs.org Git - ccan/commitdiff
.travis.yml: Correct additional packages list
authorDavid Gibson <david@gibson.dropbear.id.au>
Wed, 2 Nov 2016 06:00:00 +0000 (17:00 +1100)
committerDavid Gibson <david@gibson.dropbear.id.au>
Wed, 2 Nov 2016 06:00:00 +0000 (17:00 +1100)
The list of additional packages in our .travis.yml (mostly libraries needed
for specific modules) was incorrectly formatted.  So travis was attempting
to install the "libjudy-dev libvorbis-dev libportaudio-dev libtalloc-dev"
packagde (spaces included) which obviously didn't work.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
.travis.yml

index cbb0aebb881c1d782b2431230be392fc55916e8c..0c3cd599d4c0cec9eef395bbfe6e41a55709b94c 100644 (file)
@@ -8,7 +8,10 @@ compiler:
 addons:
     apt:
         packages:
 addons:
     apt:
         packages:
-            - libjudy-dev libvorbis-dev libportaudio-dev libtalloc-dev
+            - libjudy-dev
+            - libvorbis-dev
+            - libportaudio-dev
+            - libtalloc-dev
 
 script:
         - make config.h
 
 script:
         - make config.h