From: Hugo Villeneuve Date: Fri, 28 Nov 2014 06:27:22 +0000 (-0500) Subject: Permit make get to continue even if fetching patches list failed X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=20e2be33f5d0be646e709eb5ae445d7098852180;p=hvlinux.git Permit make get to continue even if fetching patches list failed --- diff --git a/functions/fpkg b/functions/fpkg index 9563456..b5c06c6 100644 --- a/functions/fpkg +++ b/functions/fpkg @@ -218,20 +218,26 @@ update_packages_init() if [ -n "${USE_LFS_PATCHES}" ]; then # Getting list of all patches from LFS server. + set +e rcmd "Fetching LFS patches list" static_fetch_patches_list \ ${LFS_PATCHES_URL} ${LFS_PATCHES_LIST} + set -e fi if [ -n "${USE_BLFS_PATCHES}" ]; then # Getting list of all patches from BLFS server. + set +e rcmd "Fetching BLFS patches list" static_fetch_patches_list \ ${BLFS_PATCHES_URL} ${BLFS_PATCHES_LIST} + set -e fi if [ -n "${USE_CLFS_PATCHES}" ]; then # Getting list of all patches from CLFS server. + set +e rcmd "Fetching CLFS patches list" static_fetch_patches_list \ ${CLFS_PATCHES_URL} ${CLFS_PATCHES_LIST} + set -e fi }