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/13 09:07:30 UTC

[kudu] 01/03: 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 branch-1.9.x
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit caaaa5e148106aea33a9d3aa1f70c51620321e7e
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/12460
    Tested-by: Kudu Jenkins
    Reviewed-by: Adar Dembo <ad...@cloudera.com>
---
 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