Re: [PATCH v1 05/19] travis.yml: Fix the ccache lines

2019-10-23 Thread Philippe Mathieu-Daudé
On 10/22/19 9:16 PM, Alex Bennée wrote: From: Thomas Huth The "command -v ccache && ccache ..." likely were supposed to test the availability of ccache before running the program. But this shell construct causes Travis to abort if ccache is not available. Use an if-statement instead to fix this

[PATCH v1 05/19] travis.yml: Fix the ccache lines

2019-10-22 Thread Alex Bennée
From: Thomas Huth The "command -v ccache && ccache ..." likely were supposed to test the availability of ccache before running the program. But this shell construct causes Travis to abort if ccache is not available. Use an if-statement instead to fix this problem. Signed-off-by: Thomas Huth Mes