diff options
author | Niels de Vos <ndevos@redhat.com> | 2014-03-19 18:03:54 +0100 |
---|---|---|
committer | Niels de Vos <ndevos@redhat.com> | 2014-05-05 06:35:38 -0700 |
commit | f863a9b69ecc9513b74cb07cb199f0c0ff38104e (patch) | |
tree | fb0c4391b51c60cd5d619b2af9a3c25d28c8e915 /xlators/features/compress | |
parent | 0d2dbd569f5ee187fc7b864c30cc668fee465bb1 (diff) |
build: do not create versioned <xlator>.so files
There has been a misspelled option in the Makefile.am files. The option
is called -avoid-version, and not -avoidversion.
It is not trivial to provide a test-case for this. One way would be to
check generated RPMs with a command like this (output should be empty):
$ rpm -qlp *.rpm | grep -E '/xlator/.+.so.0'
Change-Id: Ie1519455c9f9366feee0d3cafcc384b9eff57776
Reviewed-on-master: http://review.gluster.org/7299
BUG: 1078365
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Reviewed-on: http://review.gluster.org/7301
Reviewed-by: Lalatendu Mohanty <lmohanty@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'xlators/features/compress')
-rw-r--r-- | xlators/features/compress/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/compress/src/Makefile.am b/xlators/features/compress/src/Makefile.am index 4a64b52a9a1..0bf757c063e 100644 --- a/xlators/features/compress/src/Makefile.am +++ b/xlators/features/compress/src/Makefile.am @@ -4,7 +4,7 @@ xlatordir = $(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator/features noinst_HEADERS = cdc.h cdc-mem-types.h -cdc_la_LDFLAGS = -module -avoidversion $(LIBZ_LIBS) +cdc_la_LDFLAGS = -module -avoid-version $(LIBZ_LIBS) cdc_la_SOURCES = cdc.c cdc-helper.c cdc_la_LIBADD = $(top_builddir)/libglusterfs/src/libglusterfs.la |