Warnings if tlsdate doesn't build
This commit is contained in:
parent
eae6b96735
commit
e36a4b876c
|
@ -1681,7 +1681,15 @@ function set_repo_commit {
|
||||||
cd $INSTALL_DIR/tlsdate
|
cd $INSTALL_DIR/tlsdate
|
||||||
make clean
|
make clean
|
||||||
./configure
|
./configure
|
||||||
|
if [ ! "$?" = "0" ]; then
|
||||||
|
echo $'Failed to configure tlsdate'
|
||||||
|
exit 727824
|
||||||
|
fi
|
||||||
make
|
make
|
||||||
|
if [ ! "$?" = "0" ]; then
|
||||||
|
echo $'Failed to build tlsdate'
|
||||||
|
exit 728752
|
||||||
|
fi
|
||||||
make install
|
make install
|
||||||
fi
|
fi
|
||||||
if [[ $repo_dir == *"gpgit" ]]; then
|
if [[ $repo_dir == *"gpgit" ]]; then
|
||||||
|
|
Loading…
Reference in New Issue