mirror of
https://github.com/YellowJacketLinux/lfs-rpmify.git
synced 2025-01-23 14:32:11 +08:00
Check for configure script failure
This commit is contained in:
parent
3080e25ade
commit
25b5c7a947
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user