diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-09-05 19:09:32 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-09-05 19:13:11 +0200 |
commit | 9e2f3e279d7b77e29b839804ba5c3ddbbe06d24c (patch) | |
tree | e772042cdab0016bbad79afdf28d4d4cad9bf9d8 /xfce-base/xfconf | |
parent | xfce-base/xfconf: Drop old interim version (diff) | |
download | gentoo-9e2f3e279d7b77e29b839804ba5c3ddbbe06d24c.tar.gz gentoo-9e2f3e279d7b77e29b839804ba5c3ddbbe06d24c.tar.bz2 gentoo-9e2f3e279d7b77e29b839804ba5c3ddbbe06d24c.zip |
xfce-base/xfconf: Run tests with -j1 due to race condition
Bug: https://bugzilla.xfce.org/show_bug.cgi?id=13840
Closes: https://bugs.gentoo.org/629960
Diffstat (limited to 'xfce-base/xfconf')
-rw-r--r-- | xfce-base/xfconf/xfconf-4.13.4.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfce-base/xfconf/xfconf-4.13.4.ebuild b/xfce-base/xfconf/xfconf-4.13.4.ebuild index eff57ca45509..d82d16a974dd 100644 --- a/xfce-base/xfconf/xfconf-4.13.4.ebuild +++ b/xfce-base/xfconf/xfconf-4.13.4.ebuild @@ -52,7 +52,8 @@ my_test() { eval "${out}" local ret=0 - nonfatal emake check || ret=1 + # https://bugzilla.xfce.org/show_bug.cgi?id=13840 + nonfatal emake -j1 check || ret=1 kill "${XFCONFD_PID}" || ewarn "Unable to kill xfconfd" return "${ret}" |