mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-16 09:12:44 +03:00
do not exit on error from env script
This commit is contained in:
parent
0e7a8aba9c
commit
3d514d5334
@ -255,7 +255,7 @@ ns-make-libs()
|
||||
echo " MAKE: make -C ${REPO} $USE_CPUS $*"
|
||||
${MAKE} -C ${TARGET_WORKSPACE}/${REPO} $USE_CPUS $*
|
||||
if [ $? -ne 0 ]; then
|
||||
exit $?
|
||||
return $?
|
||||
fi
|
||||
done
|
||||
|
||||
@ -263,7 +263,7 @@ ns-make-libs()
|
||||
echo " MAKE: make -C ${REPO} $USE_CPUS $*"
|
||||
${MAKE} -C ${TARGET_WORKSPACE}/${REPO} HOST=${HOST} $USE_CPUS $*
|
||||
if [ $? -ne 0 ]; then
|
||||
exit $?
|
||||
return $?
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user