From 8b4788c5ff27a8ffc49cbe7bfdd2e822ccd590d1 Mon Sep 17 00:00:00 2001 From: "Andreas K. Huettel (dilfridge)" Date: Thu, 19 Apr 2012 21:50:35 +0200 Subject: [eclass] No ewarns even if tar misses some files on unpack, as that is so common it's pretty much useless. --- eclass/kde4-meta.eclass | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'eclass/kde4-meta.eclass') diff --git a/eclass/kde4-meta.eclass b/eclass/kde4-meta.eclass index e3d5612ca09..a8e219c03bc 100644 --- a/eclass/kde4-meta.eclass +++ b/eclass/kde4-meta.eclass @@ -253,12 +253,7 @@ kde4-meta_src_extract() { # Print out all issues found executing tar / kmextract files # Set on if you want to find issues in kde-base ebuild unpack sequences [[ -n ${KDE4_STRICTER} ]] && echo 'tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist}' - if [[ ${I_KNOW_WHAT_I_AM_DOING} ]]; then - # to make the devs happy - bug 338397 - tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} || ewarn "tar extract command failed at least partially - continuing anyway" - else - tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" - fi + tar -xpf "${tarfile}" ${KMTARPARAMS} ${extractlist} 2> /dev/null || echo "tar extract command failed at least partially - continuing anyway" # Default $S is based on $P; rename the extracted directory to match $S if necessary if [[ ${KMNAME} != ${PN} ]]; then -- cgit v1.2.3