Remove the "v" verbose option to tar, as it obscures the useful info

in the logs for not much gain, I think.
This commit is contained in:
Sylvain Pion 2008-08-19 09:43:46 +00:00
parent a713dc281b
commit 60a380e2f4
2 changed files with 2 additions and 2 deletions

View File

@ -350,7 +350,7 @@ unzip_cgal()
DECOMPRESSOR="bunzip2" DECOMPRESSOR="bunzip2"
fi fi
log ${ACTUAL_LOGFILE} "untarring CGAL" log ${ACTUAL_LOGFILE} "untarring CGAL"
${DECOMPRESSOR} -c ${CGAL_ZIPFILE} | ${TAR} xvf - >> ${ACTUAL_LOGFILE} 2>&1 ${DECOMPRESSOR} -c ${CGAL_ZIPFILE} | ${TAR} xf - >> ${ACTUAL_LOGFILE} 2>&1
if [ ${?} != 0 ]; then if [ ${?} != 0 ]; then
error "Could not untar CGAL" error "Could not untar CGAL"
fi fi

View File

@ -256,7 +256,7 @@ unzip_cgal()
fi fi
log "${ACTUAL_LOGFILE}" "untarring CGAL" log "${ACTUAL_LOGFILE}" "untarring CGAL"
${DECOMPRESSOR} -c "${CGAL_ZIPFILE}" | ${TAR} xvf - >> "${ACTUAL_LOGFILE}" 2>&1 ${DECOMPRESSOR} -c "${CGAL_ZIPFILE}" | ${TAR} xf - >> "${ACTUAL_LOGFILE}" 2>&1
if [ ${?} != 0 ]; then if [ ${?} != 0 ]; then
error "Could not untar CGAL" error "Could not untar CGAL"
fi fi