Browse Source

Warnings if tlsdate doesn't build

Bob Mottram 8 years ago
parent
commit
e36a4b876c
No account linked to committer's email
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      src/freedombone

+ 8
- 0
src/freedombone View File

@@ -1681,7 +1681,15 @@ function set_repo_commit {
1681 1681
 					cd $INSTALL_DIR/tlsdate
1682 1682
 					make clean
1683 1683
 					./configure
1684
+					if [ ! "$?" = "0" ]; then
1685
+						echo $'Failed to configure tlsdate'
1686
+						exit 727824
1687
+					fi
1684 1688
 					make
1689
+					if [ ! "$?" = "0" ]; then
1690
+						echo $'Failed to build tlsdate'
1691
+						exit 728752
1692
+					fi
1685 1693
 					make install
1686 1694
 				fi
1687 1695
 				if [[ $repo_dir == *"gpgit" ]]; then