Explorar el Código

Warnings if tlsdate doesn't build

Bob Mottram hace 8 años
padre
commit
e36a4b876c
Ninguna cuenta está vinculada al correo electrónico del colaborador
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8
    0
      src/freedombone

+ 8
- 0
src/freedombone Ver fichero

@@ -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