From nobody Thu May 15 06:33:52 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542831429911.8091388037441; Wed, 1 Nov 2017 06:27:11 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id CD0AE5F7BF; Wed, 1 Nov 2017 13:27:09 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id DC1C146E61; Wed, 1 Nov 2017 13:27:08 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 3E6101800BCA; Wed, 1 Nov 2017 13:27:05 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id vA1DR3BY028792 for ; Wed, 1 Nov 2017 09:27:03 -0400 Received: by smtp.corp.redhat.com (Postfix) id EEB7860317; Wed, 1 Nov 2017 13:27:03 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6F8E26055F for ; Wed, 1 Nov 2017 13:27:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com CD0AE5F7BF Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:53 +0100 Message-Id: <17e1ac48dc5e6cb6fec91a33a246bf88564e8522.1509542719.git.phrdina@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 1/7] projects: make sure that we use correct make for all projects X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Wed, 01 Nov 2017 13:27:10 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" On FreeBSD we need to use gmake. Signed-off-by: Pavel Hrdina --- projects/libvirt-cim.yaml | 8 +++++--- projects/osinfo-db.yaml | 10 ++++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/projects/libvirt-cim.yaml b/projects/libvirt-cim.yaml index e1c8fb1..b5405f3 100644 --- a/projects/libvirt-cim.yaml +++ b/projects/libvirt-cim.yaml @@ -12,12 +12,14 @@ - generic-build-job: parent_jobs: 'libvirt-master-build' command: | + {make_env} ./autogen.sh ./configure --prefix=3D$VIRT_PREFIX - make -j{smp} - make -j{smp} install + $MAKE -j{smp} + $MAKE -j{smp} install - generic-rpm-job: parent_jobs: 'libvirt-cim-master-build' command: | + {make_env} sed -i -e "s/.*libvirt-devel.*//" libvirt-cim.spec.in - make -j{smp} rpm + $MAKE -j{smp} rpm diff --git a/projects/osinfo-db.yaml b/projects/osinfo-db.yaml index 9fec36a..169c76b 100644 --- a/projects/osinfo-db.yaml +++ b/projects/osinfo-db.yaml @@ -14,14 +14,16 @@ - generic-build-job: parent_jobs: 'osinfo-db-tools-master-build' command: | + {make_env} export PATH=3D$VIRT_PREFIX/bin:$PATH - make -j3 all - make install OSINFO_DB_TARGET=3D"--system" + $MAKE -j3 all + $MAKE install OSINFO_DB_TARGET=3D"--system" - generic-rpm-job: parent_jobs: 'osinfo-db-master-build' command: | + {make_env} export PATH=3D$VIRT_PREFIX/bin:$PATH rm -f *.tar.xz - make osinfo-db.spec + $MAKE osinfo-db.spec perl -i -p -e 's/BuildRequires: osinfo-db-tools.*//' osinfo-db= .spec - make rpm + $MAKE rpm --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list