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 E0AA7138010 for ; Sat, 13 Oct 2012 02:48:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0709E045E; Sat, 13 Oct 2012 02:48:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 38A6DE045E for ; Sat, 13 Oct 2012 02:48:14 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9AB3633D9E8 for ; Sat, 13 Oct 2012 02:48:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 42950E5436 for ; Sat, 13 Oct 2012 02:48:11 +0000 (UTC) From: "Jorge Manuel B. S. Vicetto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jorge Manuel B. S. Vicetto" Message-ID: <1350096240.1e49d720b70c27a14a61b961d1225f18e9291a27.jmbsvicetto@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/functions.sh X-VCS-Directories: targets/support/ X-VCS-Committer: jmbsvicetto X-VCS-Committer-Name: Jorge Manuel B. S. Vicetto X-VCS-Revision: 1e49d720b70c27a14a61b961d1225f18e9291a27 X-VCS-Branch: master Date: Sat, 13 Oct 2012 02:48:11 +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: da5c73a2-67bc-4ab2-943a-02567783cf8b X-Archives-Hash: fae92c380c13f6f7df29bc0c389e3d62 commit: 1e49d720b70c27a14a61b961d1225f18e9291a27 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo org> AuthorDate: Sat Oct 13 02:44:00 2012 +0000 Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Sat Oct 13 02:44:00 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=1e49d720 Fix the breakage of /lib on amd64 caused by tar replacing the symlink with a dir. --- targets/support/functions.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/targets/support/functions.sh b/targets/support/functions.sh index 4018716..d0737a6 100644 --- a/targets/support/functions.sh +++ b/targets/support/functions.sh @@ -115,7 +115,7 @@ extract_modules() { if [ -f "${kmodules}" ] then mkdir -p ${1}/ - tar xjf ${kmodules} -C ${1} lib + tar xjf ${kmodules} --strip-components 1 -C ${1}/lib lib else echo "Can't find kernel modules tarball at ${kmodules}. Skipping...." fi