From 2e494ac58f90e23500d7b3f11b126c2ac483ec1d Mon Sep 17 00:00:00 2001 From: Joonas Niilola Date: Fri, 3 Dec 2021 14:56:45 +0200 Subject: 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 --- x11-misc/clipnotify/clipnotify-1.0.2.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'x11-misc/clipnotify') 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 } -- cgit v1.2.3-65-gdbad