mirror of https://github.com/apache/cassandra
jemalloc detection fails due to quoting issues in regex
patch by Bernhard K. Weisshuhn; reviewed by Robert Stupp for CASSANDRA-10946
This commit is contained in:
parent
450091bfb8
commit
f9ac657456
|
|
@ -1,4 +1,5 @@
|
|||
2.2.5
|
||||
* jemalloc detection fails due to quoting issues in regexv (CASSANDRA-10946)
|
||||
* Support counter-columns for native aggregates (sum,avg,max,min) (CASSANDRA-9977)
|
||||
* (cqlsh) show correct column names for empty result sets (CASSANDRA-9813)
|
||||
* Add new types to Stress (CASSANDRA-9556)
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ case "`uname -s`" in
|
|||
which ldconfig > /dev/null 2>&1
|
||||
if [ $? = 0 ] ; then
|
||||
# e.g. for CentOS
|
||||
dirs="/lib64 /lib /usr/lib64 /usr/lib `ldconfig -v 2>/dev/null | grep -v ^$'\t' | sed 's/^\([^:]*\):.*$/\1/'`"
|
||||
dirs="/lib64 /lib /usr/lib64 /usr/lib `ldconfig -v 2>/dev/null | grep -v '^\s' | sed 's/^\([^:]*\):.*$/\1/'`"
|
||||
else
|
||||
# e.g. for Debian, OpenSUSE
|
||||
dirs="/lib64 /lib /usr/lib64 /usr/lib `cat /etc/ld.so.conf /etc/ld.so.conf.d/*.conf | grep '^/'`"
|
||||
|
|
|
|||
Loading…
Reference in New Issue