From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A456158094 for ; Fri, 24 Jun 2022 16:25:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83BA4E079E; Fri, 24 Jun 2022 16:25:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F139E079E for ; Fri, 24 Jun 2022 16:25:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB92A340F95 for ; Fri, 24 Jun 2022 16:25:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 051A7448 for ; Fri, 24 Jun 2022 16:25:04 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1656087828.eb8a99321f0bef37ad1b9a39876b61c9dec33150.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lvm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lvm2/lvm2-2.02.188-r2.ebuild sys-fs/lvm2/lvm2-2.02.188-r3.ebuild sys-fs/lvm2/lvm2-2.03.14-r1.ebuild sys-fs/lvm2/lvm2-2.03.14-r2.ebuild X-VCS-Directories: sys-fs/lvm2/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: eb8a99321f0bef37ad1b9a39876b61c9dec33150 X-VCS-Branch: master Date: Fri, 24 Jun 2022 16:25:04 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 064de0d1-d0da-47a7-ab80-46abe61db6dd X-Archives-Hash: ad23e4666d226178b35f7ff246ec39be commit: eb8a99321f0bef37ad1b9a39876b61c9dec33150 Author: Mike Gilbert gentoo org> AuthorDate: Fri Jun 24 16:23:48 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Jun 24 16:23:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb8a9932 sys-fs/lvm2: pass SYSTEMD_GENERATOR_DIR to make install Passing systemdutildir does not work because it is a configure variable, not a make variable. Closes: https://bugs.gentoo.org/840577 Signed-off-by: Mike Gilbert gentoo.org> sys-fs/lvm2/{lvm2-2.02.188-r2.ebuild => lvm2-2.02.188-r3.ebuild} | 2 +- sys-fs/lvm2/{lvm2-2.03.14-r1.ebuild => lvm2-2.03.14-r2.ebuild} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild b/sys-fs/lvm2/lvm2-2.02.188-r3.ebuild similarity index 98% rename from sys-fs/lvm2/lvm2-2.02.188-r2.ebuild rename to sys-fs/lvm2/lvm2-2.02.188-r3.ebuild index a3e76755f1d5..50111c5fabb3 100644 --- a/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild +++ b/sys-fs/lvm2/lvm2-2.02.188-r3.ebuild @@ -210,7 +210,7 @@ src_install() { local inst local INSTALL_TARGETS=( install install_tmpfiles_configuration ) # install systemd related files only when requested, bug #522430 - use systemd && INSTALL_TARGETS+=( systemdutildir="$(systemd_get_utildir)" install_systemd_units install_systemd_generators ) + use systemd && INSTALL_TARGETS+=( SYSTEMD_GENERATOR_DIR="$(systemd_get_systemgeneratordir)" install_systemd_units install_systemd_generators ) use device-mapper-only && INSTALL_TARGETS=( install_device-mapper ) emake V=1 DESTDIR="${D}" "${INSTALL_TARGETS[@]}" diff --git a/sys-fs/lvm2/lvm2-2.03.14-r1.ebuild b/sys-fs/lvm2/lvm2-2.03.14-r2.ebuild similarity index 98% rename from sys-fs/lvm2/lvm2-2.03.14-r1.ebuild rename to sys-fs/lvm2/lvm2-2.03.14-r2.ebuild index 66b2184868ed..2da81764efe4 100644 --- a/sys-fs/lvm2/lvm2-2.03.14-r1.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.14-r2.ebuild @@ -212,7 +212,7 @@ src_install() { local inst local INSTALL_TARGETS=( install install_tmpfiles_configuration ) # install systemd related files only when requested, bug #522430 - use systemd && INSTALL_TARGETS+=( systemdutildir="$(systemd_get_utildir)" install_systemd_units install_systemd_generators ) + use systemd && INSTALL_TARGETS+=( SYSTEMD_GENERATOR_DIR="$(systemd_get_systemgeneratordir)" install_systemd_units install_systemd_generators ) use device-mapper-only && INSTALL_TARGETS=( install_device-mapper ) emake V=1 DESTDIR="${D}" "${INSTALL_TARGETS[@]}"