commit: 819c19ef69bd68fbef8daf439008c402b2e154f3
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Tue Mar 26 01:24:22 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 26 12:27:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=819c19ef
sys-fs/aufs-util: do not perform all compilation during src_install
Upstream cleverly has the first target be "pre" and somewhere later on
the "all" target actually does what is wanted.
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-fs/aufs-util/aufs-util-4.14_p20190603.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/sys-fs/aufs-util/aufs-util-4.14_p20190603.ebuild
b/sys-fs/aufs-util/aufs-util-4.14_p20190603.ebuild
index 7e9701ae6984..2055f81c8d3a 100644
--- a/sys-fs/aufs-util/aufs-util-4.14_p20190603.ebuild
+++ b/sys-fs/aufs-util/aufs-util-4.14_p20190603.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -45,3 +45,7 @@ src_prepare() {
export STRIP=true
default
}
+
+src_compile() {
+ emake all
+}