You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2018/01/04 20:35:15 UTC

kudu git commit: [thirdparty] fix lib link in PREFIX_DIR

Repository: kudu
Updated Branches:
  refs/heads/master cc236542e -> 9bdeddf33


[thirdparty] fix lib link in PREFIX_DIR

Avoid creating the unintended 'lib' soft link in already soft-linked
directory.

Change-Id: I9ff2d57414eb048a97b5494bebab5826a9d83fdf
Reviewed-on: http://gerrit.cloudera.org:8080/8943
Reviewed-by: Todd Lipcon <to...@apache.org>
Tested-by: Kudu Jenkins


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/9bdeddf3
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/9bdeddf3
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/9bdeddf3

Branch: refs/heads/master
Commit: 9bdeddf3373369e1406972861682f2a61889040d
Parents: cc23654
Author: Alexey Serbin <as...@cloudera.com>
Authored: Thu Jan 4 11:50:43 2018 -0800
Committer: Alexey Serbin <as...@cloudera.com>
Committed: Thu Jan 4 20:33:20 2018 +0000

----------------------------------------------------------------------
 thirdparty/build-thirdparty.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/9bdeddf3/thirdparty/build-thirdparty.sh
----------------------------------------------------------------------
diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh
index e239984..c570f9e 100755
--- a/thirdparty/build-thirdparty.sh
+++ b/thirdparty/build-thirdparty.sh
@@ -125,7 +125,7 @@ for PREFIX_DIR in $PREFIX_COMMON $PREFIX_DEPS $PREFIX_DEPS_TSAN; do
     # On some systems, autotools installs libraries to lib64 rather than lib.  Fix
     # this by setting up lib64 as a symlink to lib.  We have to do this step first
     # to handle cases where one third-party library depends on another.
-    ln -sf "$PREFIX_DIR/lib" "$PREFIX_DIR/lib64"
+    ln -nsf "$PREFIX_DIR/lib" "$PREFIX_DIR/lib64"
   fi
 done