summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2024-03-25 21:24:22 -0400
committerSam James <sam@gentoo.org>2024-03-26 12:27:29 +0000
commit819c19ef69bd68fbef8daf439008c402b2e154f3 (patch)
treecf3be2373d7393892ec6726911591162358e9ac1 /sys-fs/aufs-util
parentsys-fs/diskdev_cmds: mark as LTO-unsafe, strict-aliasing unsafe (diff)
downloadgentoo-819c19ef69bd68fbef8daf439008c402b2e154f3.tar.gz
gentoo-819c19ef69bd68fbef8daf439008c402b2e154f3.tar.bz2
gentoo-819c19ef69bd68fbef8daf439008c402b2e154f3.zip
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@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs/aufs-util')
-rw-r--r--sys-fs/aufs-util/aufs-util-4.14_p20190603.ebuild6
1 files changed, 5 insertions, 1 deletions
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
+}