From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 088AC13827E for ; Fri, 24 Jan 2014 19:27:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F381E0B16; Fri, 24 Jan 2014 19:27:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33B01E0B16 for ; Fri, 24 Jan 2014 19:27:28 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D36633F15B for ; Fri, 24 Jan 2014 19:27:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 639C9183B3 for ; Fri, 24 Jan 2014 19:27:25 +0000 (UTC) From: "Richard Yao" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Yao" Message-ID: <1390591633.def540b06a3b6e5478308309a6eac55fba358b9f.ryao@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_package.sh X-VCS-Directories: / X-VCS-Committer: ryao X-VCS-Committer-Name: Richard Yao X-VCS-Revision: def540b06a3b6e5478308309a6eac55fba358b9f X-VCS-Branch: master Date: Fri, 24 Jan 2014 19:27:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4cdcd233-7887-4068-9913-5fa50fcc1f66 X-Archives-Hash: d8e3bdca2f0246bfeb59590f4df5f3aa commit: def540b06a3b6e5478308309a6eac55fba358b9f Author: Richard Yao gentoo org> AuthorDate: Fri Jan 24 19:26:58 2014 +0000 Commit: Richard Yao gentoo org> CommitDate: Fri Jan 24 19:27:13 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=def540b0 Revert "Make --kerncache compatible with recent versions of GNU tar, bug #457168" This reverts commit 2d720491bd62eb1c87f8da23ec7aef393207bf30, which caused us to have /lib/lib. That got past me when testing. --- gen_package.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen_package.sh b/gen_package.sh index c06521c..ed7a5f4 100755 --- a/gen_package.sh +++ b/gen_package.sh @@ -134,9 +134,9 @@ gen_kerncache_extract_modules() print_info 1 'Extracting kerncache kernel modules' if [ "${INSTALL_MOD_PATH}" != '' ] then - /bin/tar -xjf ${KERNCACHE} -C ${INSTALL_MOD_PATH}/lib + /bin/tar -xjf ${KERNCACHE} -C ${INSTALL_MOD_PATH} lib else - /bin/tar -xjf ${KERNCACHE} -C /lib + /bin/tar -xjf ${KERNCACHE} -C / lib fi fi }