diff options
author | Niels de Vos <ndevos@redhat.com> | 2018-01-31 16:38:34 +0100 |
---|---|---|
committer | ShyamsundarR <srangana@redhat.com> | 2018-02-21 13:08:14 -0500 |
commit | 4c0c5ecb6ba3f16aa56987916a7682eaed211a37 (patch) | |
tree | ca84a3954008a2172ceda7a7b79eef40a9d414d7 /events | |
parent | 9b2995426ea206df9a4d8f14bbdb8e8baf73d91b (diff) |
build: add --without-server option
With Gluster 4.0 we will not provide the server components for EL6 and
older. At one point Gluster 4.x will get GlusterD2, which requires
Golang tools in the distribution. EL6 does not contain these at the
moment.
With this change, it is possible to `./configure --without-server` which
prevents building glusterd and the xlators for the bricks. Building RPMs
can pass `--without server` and the glusterfs-server sub-package will
not be created.
Change-Id: I97f5ccf9f2c76e60d9af83915fc59fae57ad6d25
BUG: 1547635
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Diffstat (limited to 'events')
-rw-r--r-- | events/src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/events/src/Makefile.am b/events/src/Makefile.am index 4308ccdbb22..4e83a469cc2 100644 --- a/events/src/Makefile.am +++ b/events/src/Makefile.am @@ -6,8 +6,10 @@ BUILT_SOURCES = eventtypes.py CLEANFILES = eventtypes.py eventsdir = $(GLUSTERFS_LIBEXECDIR)/events +if BUILD_EVENTS events_PYTHON = __init__.py gf_event.py eventsapiconf.py eventtypes.py \ utils.py +endif # this does not work, see the Makefile.am in the root for a workaround #nodist_events_PYTHON = eventtypes.py |