You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by ad...@apache.org on 2019/02/12 23:11:33 UTC

[kudu] branch master updated: KUDU-2411: fix dep pattern matching in relocation script

This is an automated email from the ASF dual-hosted git repository.

adar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/master by this push:
     new d760b27  KUDU-2411: fix dep pattern matching in relocation script
d760b27 is described below

commit d760b27e4a27d0836b1f80c4a058e5f176b149eb
Author: Adar Dembo <ad...@cloudera.com>
AuthorDate: Tue Feb 12 12:07:32 2019 -0800

    KUDU-2411: fix dep pattern matching in relocation script
    
    The trailing '|' caused all shared objects except for the sasl2 modules to
    be excluded. The resulting archive wasn't usable.
    
    Change-Id: If90f95bd7a1a8f8c2a3f6441d047096542f1f048
    Reviewed-on: http://gerrit.cloudera.org:8080/12456
    Tested-by: Kudu Jenkins
    Reviewed-by: Grant Henke <gr...@apache.org>
---
 build-support/mini-cluster/relocate_binaries_for_mini_cluster.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py b/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py
index cb6dfef..30ecdba 100755
--- a/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py
+++ b/build-support/mini-cluster/relocate_binaries_for_mini_cluster.py
@@ -66,7 +66,7 @@ PAT_LINUX_LIB_EXCLUDE = re.compile(r"""(libpthread|
                                         libcom_err|
                                         libdb-[\d.]+|
                                         libselinux|
-                                        libtinfo|
+                                        libtinfo
                                        )\.so""", re.VERBOSE)
 
 # We don't want to ship libSystem because it includes kernel and thread