travis: Don't build TSS2 as root

This might prevent ccache from overwriting files in later builds.
This commit is contained in:
Tobias Brunner
2018-11-21 14:36:38 +01:00
parent 75853dbe4b
commit 248f34918f
+2 -1
View File
@@ -49,7 +49,8 @@ build_tss2()
curl -L $TSS2_SRC | tar xz -C $TRAVIS_BUILD_DIR/.. &&
cd $TSS2_DIR &&
./configure &&
sudo make -j4 install >/dev/null &&
make -j4 >/dev/null &&
sudo make install >/dev/null &&
sudo ldconfig || exit $?
cd -
}