Repository: kudu Updated Branches: refs/heads/master f10ab4a1d -> 805d1cf84
thirdparty: fix broken clean build I had 'rm' where I meant 'rm -f', so was failing on a clean build. Change-Id: Iabdb6c71f65c128b5f71b7e522e51b2f05064855 Reviewed-on: http://gerrit.cloudera.org:8080/5196 Reviewed-by: Adar Dembo <[email protected]> Tested-by: Todd Lipcon <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/d6dd01f9 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/d6dd01f9 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/d6dd01f9 Branch: refs/heads/master Commit: d6dd01f98009c6918fb8d1c55415c55d51cd91f3 Parents: f10ab4a Author: Todd Lipcon <[email protected]> Authored: Tue Nov 22 17:23:22 2016 -0800 Committer: Todd Lipcon <[email protected]> Committed: Wed Nov 23 04:00:28 2016 +0000 ---------------------------------------------------------------------- thirdparty/build-definitions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/d6dd01f9/thirdparty/build-definitions.sh ---------------------------------------------------------------------- diff --git a/thirdparty/build-definitions.sh b/thirdparty/build-definitions.sh index 1224657..923a98b 100644 --- a/thirdparty/build-definitions.sh +++ b/thirdparty/build-definitions.sh @@ -445,7 +445,7 @@ build_bitshuffle() { to_link="$to_link $dst_obj" done - rm bitshuffle.a + rm -f bitshuffle.a ar rs bitshuffle.a $to_link cp bitshuffle.a $PREFIX/lib/ cp $BITSHUFFLE_SOURCE/src/bitshuffle.h $PREFIX/include/bitshuffle.h
