diff options
| author | Andreas K. Huettel (dilfridge) <mail@akhuettel.de> | 2012-04-19 21:50:35 +0200 |
|---|---|---|
| committer | Andreas K. Huettel (dilfridge) <mail@akhuettel.de> | 2012-04-19 21:50:35 +0200 |
| commit | 8b4788c5ff27a8ffc49cbe7bfdd2e822ccd590d1 (patch) | |
| tree | c237d62c81eb584e627be20eff296773917abd99 /eclass/kde4-meta.eclass | |
| parent | 798ff98cc726ea34153c2d3ced8b1566507b71a3 (diff) | |
| download | kde-8b4788c5ff27a8ffc49cbe7bfdd2e822ccd590d1.tar.gz kde-8b4788c5ff27a8ffc49cbe7bfdd2e822ccd590d1.tar.bz2 kde-8b4788c5ff27a8ffc49cbe7bfdd2e822ccd590d1.zip | |
[eclass] No ewarns even if tar misses some files on unpack, as that is so common it's pretty much useless.
Diffstat (limited to 'eclass/kde4-meta.eclass')
| -rw-r--r-- | eclass/kde4-meta.eclass | 7 |
1 files changed, 1 insertions, 6 deletions
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 |
