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 764AC1381F3 for ; Tue, 7 May 2013 14:59:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E193FE0951; Tue, 7 May 2013 14:59:04 +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 7F325E0951 for ; Tue, 7 May 2013 14:59:04 +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 4B7EC33DF98 for ; Tue, 7 May 2013 14:59:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7BD47E4DDA for ; Tue, 7 May 2013 14:59:01 +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: <1367938716.a8e795b6b9c390f5be3232ac3e410a8485ddae89.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: a8e795b6b9c390f5be3232ac3e410a8485ddae89 X-VCS-Branch: master Date: Tue, 7 May 2013 14:59:01 +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: 429fa7fb-95b0-4a98-bf63-757630ad57f4 X-Archives-Hash: 23bc8d544d91b0ace565e753d5b73167 commit: a8e795b6b9c390f5be3232ac3e410a8485ddae89 Author: Alexey Shvetsov gentoo org> AuthorDate: Tue May 7 14:57:24 2013 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Tue May 7 14:58:36 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a8e795b6 Fix quotation issues with server Package-Manager: portage-2.2.0_alpha174 RepoMan-Options: --force --- sys-cluster/lustre/ChangeLog | 3 +++ sys-cluster/lustre/lustre-9999.ebuild | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/sys-cluster/lustre/ChangeLog b/sys-cluster/lustre/ChangeLog index 6420370..67fe3ae 100644 --- a/sys-cluster/lustre/ChangeLog +++ b/sys-cluster/lustre/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 07 May 2013; Alexey Shvetsov lustre-9999.ebuild: + Fix quotation issues with server + 07 May 2013; Alexey Shvetsov +files/0001-LU-1812-kernel-3.7-FC18-server-patches.patch, +files/0002-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch, diff --git a/sys-cluster/lustre/lustre-9999.ebuild b/sys-cluster/lustre/lustre-9999.ebuild index 063ef14..cbc61e4 100644 --- a/sys-cluster/lustre/lustre-9999.ebuild +++ b/sys-cluster/lustre/lustre-9999.ebuild @@ -91,11 +91,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}\" \ - --with-spl-obj=\"${EROOT}usr/src/${SPL_PATH}/${KV_FULL}\"" + 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}\" \ - --with-zfs-obj=\"${EROOT}usr/src/${ZFS_PATH}/${KV_FULL}\"" + myconf="${myconf} --with-zfs=${EROOT}usr/src/${ZFS_PATH} \ + --with-zfs-obj=${EROOT}usr/src/${ZFS_PATH}/${KV_FULL}" fi econf \ ${myconf} \