From 38e441bdd8506f0fd1e4b8d515226b1f311accae Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 22 Nov 2017 02:31:47 +0100 Subject: [PATCH] Don't install libcppunit-dev under Travis CI any more It is not needed since the switch to Catch for unit tests. --- build/tools/before_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index 1adc73ed1b..f99db4dd82 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -10,7 +10,7 @@ case $(uname -s) in Linux) if [ -f /etc/apt/sources.list ]; then $SUDO apt-get update - $SUDO apt-get install -y libcppunit-dev libgtk2.0-dev libnotify-dev + $SUDO apt-get install -y libgtk2.0-dev libnotify-dev fi ;;