summaryrefslogtreecommitdiff
path: root/src/third_party/scripts/boost_get_sources.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/scripts/boost_get_sources.sh')
-rwxr-xr-xsrc/third_party/scripts/boost_get_sources.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/third_party/scripts/boost_get_sources.sh b/src/third_party/scripts/boost_get_sources.sh
index 5741b1eed6b..642433547c2 100755
--- a/src/third_party/scripts/boost_get_sources.sh
+++ b/src/third_party/scripts/boost_get_sources.sh
@@ -18,8 +18,8 @@ VERSION_UNDERSCORE=$(echo $VERSION | tr . _)
SRC_ROOT=$(mktemp -d /tmp/boost.XXXXXX)
trap "rm -rf $SRC_ROOT" EXIT
TARBALL=${NAME}_${VERSION_UNDERSCORE}.tar.gz
-SRC=$SRC_ROOT/$NAME_$VERSION_UNDERSCORE
-DEST_DIR=$(git rev-parse --show-toplevel)/src/third_party/$DEST
+SRC=${SRC_ROOT}/${NAME}_${VERSION_UNDERSCORE}
+DEST_DIR=$(git rev-parse --show-toplevel)/src/third_party/$NAME-$VERSION
cd $SRC_ROOT