From patchwork Fri Aug 25 10:40:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Morey-Chaisemartin X-Patchwork-Id: 9921703 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1A4B760349 for ; Fri, 25 Aug 2017 10:41:01 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0CCB227F54 for ; Fri, 25 Aug 2017 10:41:01 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F245427F4B; Fri, 25 Aug 2017 10:41:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id ACFC527F54 for ; Fri, 25 Aug 2017 10:41:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755231AbdHYKkR (ORCPT ); Fri, 25 Aug 2017 06:40:17 -0400 Received: from mx2.suse.de ([195.135.220.15]:40860 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754518AbdHYKkQ (ORCPT ); Fri, 25 Aug 2017 06:40:16 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 6EAC4AE70 for ; Fri, 25 Aug 2017 10:40:15 +0000 (UTC) From: Nicolas Morey-Chaisemartin Subject: [PATCHv2 rdma-core 5/5] cbuild: use SUSE spec file for SUSE targets To: linux-rdma@vger.kernel.org References: <88926674-d707-6f00-e9a1-e2a823fec323@suse.de> Openpgp: preference=signencrypt Message-ID: <6173036c-1120-3afa-274d-8b41ce821da2@suse.de> Date: Fri, 25 Aug 2017 12:40:14 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:56.0) Gecko/20100101 Thunderbird/56.0 MIME-Version: 1.0 In-Reply-To: <88926674-d707-6f00-e9a1-e2a823fec323@suse.de> Content-Language: fr-xx-classique+reforme1990 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Nicolas Morey-Chaisemartin --- buildlib/cbuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildlib/cbuild b/buildlib/cbuild index 86a5e42d..4c3ef36b 100755 --- a/buildlib/cbuild +++ b/buildlib/cbuild @@ -293,6 +293,7 @@ class ZypperEnvironment(Environment): class leap(ZypperEnvironment): docker_parent = "opensuse:42.2"; + specfile = "suse/rdma-core.spec"; pkgs = { 'cmake', 'gcc', @@ -313,6 +314,7 @@ class tumbleweed(ZypperEnvironment): docker_parent = "opensuse:tumbleweed"; pkgs = leap.pkgs; name = "tumbleweed"; + specfile = "suse/rdma-core.spec"; # -------------------------------------------------------------------------