Warnings if tlsdate doesn't build

This commit is contained in:
Bob Mottram 2016-06-29 16:47:20 +01:00
parent eae6b96735
commit e36a4b876c
No known key found for this signature in database
GPG Key ID: BA68F26108DC9F87
1 changed files with 8 additions and 0 deletions

View File

@ -1681,7 +1681,15 @@ function set_repo_commit {
cd $INSTALL_DIR/tlsdate
make clean
./configure
if [ ! "$?" = "0" ]; then
echo $'Failed to configure tlsdate'
exit 727824
fi
make
if [ ! "$?" = "0" ]; then
echo $'Failed to build tlsdate'
exit 728752
fi
make install
fi
if [[ $repo_dir == *"gpgit" ]]; then