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 8DFDF1381F3 for ; Mon, 22 Apr 2013 10:13:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 228A4E0B8F; Mon, 22 Apr 2013 10:13:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A27FEE0B8F for ; Mon, 22 Apr 2013 10:13:56 +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 B881033BEC8 for ; Mon, 22 Apr 2013 10:13:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 49945E408C for ; Mon, 22 Apr 2013 10:13:54 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1366625611.9fb940d15f9c3a98f0ff72a03b0635d3ad260c4c.alexxy@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/lustre/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/lustre/ChangeLog sys-cluster/lustre/lustre-9999.ebuild X-VCS-Directories: sys-cluster/lustre/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 9fb940d15f9c3a98f0ff72a03b0635d3ad260c4c X-VCS-Branch: master Date: Mon, 22 Apr 2013 10:13:54 +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: 0f434350-cdb4-46d1-a4d2-1c973e68e0d4 X-Archives-Hash: ce5e8167b474582cf17d7b296680e9e6 commit: 9fb940d15f9c3a98f0ff72a03b0635d3ad260c4c Author: Alexey Shvetsov gentoo org> AuthorDate: Mon Apr 22 10:13:31 2013 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Mon Apr 22 10:13:31 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9fb940d1 Fix zfs-osd build Package-Manager: portage-2.2.0_alpha173 RepoMan-Options: --force --- sys-cluster/lustre/ChangeLog | 3 +++ sys-cluster/lustre/lustre-9999.ebuild | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sys-cluster/lustre/ChangeLog b/sys-cluster/lustre/ChangeLog index 75510d2..fa2cda8 100644 --- a/sys-cluster/lustre/ChangeLog +++ b/sys-cluster/lustre/ChangeLog @@ -3,6 +3,9 @@ # $Header: $ 22 Apr 2013; Alexey Shvetsov lustre-9999.ebuild: + Fix zfs-osd build + + 22 Apr 2013; Alexey Shvetsov lustre-9999.ebuild: Disable liblustre by default 22 Apr 2013; Alexey Shvetsov diff --git a/sys-cluster/lustre/lustre-9999.ebuild b/sys-cluster/lustre/lustre-9999.ebuild index 3ab8227..bac140d 100644 --- a/sys-cluster/lustre/lustre-9999.ebuild +++ b/sys-cluster/lustre/lustre-9999.ebuild @@ -102,9 +102,11 @@ src_configure() { local myconf if use server; then SPL_PATH=$(basename $(echo "${EROOT}usr/src/spl-"*)) \ - myconf="${myconf} --with-spl=\"${EROOT}usr/src/${SPL_PATH}\"" + myconf="${myconf} --with-spl=\"${EROOT}usr/src/${SPL_PATH}\" \ + --with-spl-obj=\"${EROOT}usr/src/${SPL_PATH}/${KV_FULL}\"" ZFS_PATH=$(basename $(echo "${EROOT}usr/src/zfs-"*)) \ - myconf="${myconf} --with-zfs=\"${EROOT}usr/src/${ZFS_PATH}\"" + myconf="${myconf} --with-zfs=\"${EROOT}usr/src/${ZFS_PATH}\" \ + --with-zfs-obj=\"${EROOT}usr/src/${ZFS_PATH}/${KV_FULL}\"" fi econf \ ${myconf} \