X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=functions-update;h=a72b304ea61d007e386a5488e31e4f3aa70d39a8;hb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;hp=d56e2bfeb6469caf5c72b671c241e97ada8d0461;hpb=2f337c932e5c659d31b4860d4414dde540cb74bb;p=hvlinux.git diff --git a/functions-update b/functions-update index d56e2bf..a72b304 100644 --- a/functions-update +++ b/functions-update @@ -235,9 +235,7 @@ static_getpkg() # so we can safely remove any file prior to trying to download it. rm -f ${LFS_PKG_DIR}/${PACK}.${arch_ext} - echo "Trying to fetch ${PACK}.${arch_ext}" - - ${WGETCMD} ${URL}/${PACK}.${arch_ext} + rcmd "Fetching ${PACK}.${arch_ext}" ${WGETCMD} ${URL}/${PACK}.${arch_ext} wget_status=$? # Append log to global log file @@ -261,8 +259,9 @@ static_getpkg() return 1 fi - # If we arrive here, it means we were able to successfully download the file. - if [ "x${arch_ext}" = "xtar.gz" -o "x${arch_ext}" = "xtgz" -o "x${arch_ext}" = "xtar.Z" ]; then + # If we are here, it means the file was successfully downloaded. + if [ "x${arch_ext}" = "xtar.gz" -o "x${arch_ext}" = "xtgz" \ + -o "x${arch_ext}" = "xtar.Z" ]; then gztobz2 ${LFS_PKG_DIR}/${PACK}.${arch_ext} fi return $? @@ -325,17 +324,12 @@ fpkg() local PACK=${1} local URL=${2} - local FETCH_STRING="Fetching ${PACK}" if [ -z "${SRC_FILENAME}" ]; then # Default source filename = name of package SRC_FILENAME=${PACK} fi - if [ -n "${FILE_EXT}" ]; then - FETCH_STRING="${FETCH_STRING}.${FILE_EXT}" - fi - if [ -z "${FILE_EXT}" -o \ "x${FILE_EXT}" = "xtar.gz" -o \ "x${FILE_EXT}" = "xtgz" -o \ @@ -364,7 +358,9 @@ fpkg() DEST_FILE=${DEST_DIR}/${PACK}.${FINAL_EXT} if [ ! -f ${DEST_FILE} ]; then - rcmd "${FETCH_STRING}" static_getpkg ${SRC_FILENAME} ${URL} ${FILE_EXT} + set +e + static_getpkg ${SRC_FILENAME} ${URL} ${FILE_EXT} + set -e # Move file if source filename is not equal to package name and/or destination # directory is not the default: