Repository: kudu Updated Branches: refs/heads/master 8329bdc88 -> cd7b0dd4d
thirdparty: fix a missing popd in cmake download We were forgetting to popd back out of the cmake directory, which would cause other artifacts (eg snappy) to get downloaded to the wrong place, and then fail to expand. Change-Id: Ia2a68baae417c117081ab91e63b10cdb20e095e3 Reviewed-on: http://gerrit.cloudera.org:8080/5911 Reviewed-by: Adar Dembo <[email protected]> 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/cd7b0dd4 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/cd7b0dd4 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/cd7b0dd4 Branch: refs/heads/master Commit: cd7b0dd4d89f270822adf77a81d883fe40773f14 Parents: 8329bdc Author: Todd Lipcon <[email protected]> Authored: Sun Feb 5 21:09:10 2017 -0800 Committer: Alexey Serbin <[email protected]> Committed: Mon Feb 6 06:08:50 2017 +0000 ---------------------------------------------------------------------- thirdparty/download-thirdparty.sh | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/cd7b0dd4/thirdparty/download-thirdparty.sh ---------------------------------------------------------------------- diff --git a/thirdparty/download-thirdparty.sh b/thirdparty/download-thirdparty.sh index ff16ddf..a061bff 100755 --- a/thirdparty/download-thirdparty.sh +++ b/thirdparty/download-thirdparty.sh @@ -180,6 +180,7 @@ if [ ! -d $CMAKE_SOURCE ]; then # Write the patchlevel file even if the patch was skipped, so as to simplify # future patch numbering. touch patchlevel-$CMAKE_PATCHLEVEL + popd fi if [ ! -d $SNAPPY_SOURCE ]; then
