commit: 2e494ac58f90e23500d7b3f11b126c2ac483ec1d
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 3 12:56:45 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Dec 3 13:02:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e494ac5
x11-misc/clipnotify: limit MAKEOPTS to -j1
- there's only one .c file to build but it only seems to work with
-j1 for me.
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
x11-misc/clipnotify/clipnotify-1.0.2.ebuild | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
b/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
index 4a8c1f9e890c..51099e860d15 100644
--- a/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
+++ b/x11-misc/clipnotify/clipnotify-1.0.2.ebuild
@@ -18,6 +18,12 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+src_compile() {
+ # Running into parallel jobs issues with -j16 on v1.0.2. There's only
one .c file
+ # to compile. Go figure...
+ emake -j1
+}
+
src_install() {
dobin clipnotify
}