Check for configure script failure

This commit is contained in:
YellowJacketLinux 2024-10-15 20:09:49 -07:00
parent 3080e25ade
commit 25b5c7a947
3 changed files with 13 additions and 0 deletions

View File

@ -53,6 +53,10 @@ unzip -q ../${DOCTARBALL}
-D SQLITE_ENABLE_UNLOCK_NOTIFY=1 \
-D SQLITE_ENABLE_DBSTAT_VTAB=1 \
-D SQLITE_SECURE_DELETE=1"
if [ $? -ne 0 ]; then
echo "Configure script failed for SQLite3. Sorry."
exit 1
fi
make
if [ $? -ne 0 ]; then

View File

@ -29,6 +29,11 @@ fi
tar -jxf ${TARBALL} && cd libgpg-error-1.50
./configure --prefix=/usr
if [ $? -ne 0 ]; then
echo "Configure script failed for libgpg-error. Sorry."
exit 1
fi
make
if [ $? -ne 0 ]; then

View File

@ -29,6 +29,10 @@ fi
tar -jxf ${TARBALL} && cd libgcrypt-1.11.0
./configure --prefix=/usr
if [ $? -ne 0 ]; then
echo "Configure script failed for libgcrypt. Sorry."
exit 1
fi
make
if [ $? -ne 0 ]; then