X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=functions%2Ffpkg;h=b5c06c66fc11f4e448f19caa0d1c868983afaa3d;hb=6890ab467c34bc0ae1fccf18a521c3cedfa442a2;hp=95634569c5c58160a63d2dc53bacd0d97bcbda08;hpb=d9e4ff482c927d3be4a05d6a62f65aa3543b43ca;p=hvlinux.git 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 }