From eb87c96f49b3dd2c7460e58c54ce909c706cd475 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 19 Mar 2014 18:03:54 +0100 Subject: build: do not create versioned .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: I2a6cc557eada4d098b73af5a254f8c75707543da BUG: 1078365 Signed-off-by: Niels de Vos Reviewed-on: http://review.gluster.org/7299 Reviewed-by: Lalatendu Mohanty Reviewed-by: Kaleb KEITHLEY Tested-by: Gluster Build System --- xlators/encryption/crypt/src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xlators/encryption/crypt/src') diff --git a/xlators/encryption/crypt/src/Makefile.am b/xlators/encryption/crypt/src/Makefile.am index faadd117f..b13f65043 100644 --- a/xlators/encryption/crypt/src/Makefile.am +++ b/xlators/encryption/crypt/src/Makefile.am @@ -3,7 +3,7 @@ if ENABLE_CRYPT_XLATOR xlator_LTLIBRARIES = crypt.la xlatordir = $(libdir)/glusterfs/$(PACKAGE_VERSION)/xlator/encryption -crypt_la_LDFLAGS = -module -avoidversion -lssl -lcrypto +crypt_la_LDFLAGS = -module -avoid-version -lssl -lcrypto crypt_la_SOURCES = keys.c data.c metadata.c atom.c crypt.c crypt_la_LIBADD = $(top_builddir)/libglusterfs/src/libglusterfs.la -- cgit