diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2020-05-31 11:08:05 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2020-05-31 11:09:56 +0300 |
commit | 5353570df96a853b2e95e194bfd4156940ab9802 (patch) | |
tree | 7e8f30f15d83de1710b75b803087870ff7358cfc /app-admin/clsync | |
parent | app-admin/clsync: add live ebuild (diff) | |
download | gentoo-5353570df96a853b2e95e194bfd4156940ab9802.tar.gz gentoo-5353570df96a853b2e95e194bfd4156940ab9802.tar.bz2 gentoo-5353570df96a853b2e95e194bfd4156940ab9802.zip |
app-admin/clsync: check for inotify support in kernel
However unlikely it is still possible that user has kernel without
inotify support, so check for INOTIFY_USER if inotify is requested
(which is default behaviour).
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Diffstat (limited to 'app-admin/clsync')
-rw-r--r-- | app-admin/clsync/clsync-0.4.4.ebuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app-admin/clsync/clsync-0.4.4.ebuild b/app-admin/clsync/clsync-0.4.4.ebuild index ee8baf2da676..2d3aee38a854 100644 --- a/app-admin/clsync/clsync-0.4.4.ebuild +++ b/app-admin/clsync/clsync-0.4.4.ebuild @@ -36,6 +36,7 @@ RDEPEND="${DEPEND} " pkg_pretend() { + use inotify && CONFIG_CHECK+=" ~INOTIFY_USER" use namespaces && CONFIG_CHECK="~NAMESPACES ~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS" use seccomp && CONFIG_CHECK+=" ~SECCOMP" check_extra_config |