And remove the use of tooltool-download where it's not needed anymore. Differential Revision: https://phabricator.services.mozilla.com/D40714
15 lines
308 B
Bash
Executable File
15 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
set -x -e -v
|
|
|
|
# This script is for building hfsplus for Linux.
|
|
|
|
cd $GECKO_PATH
|
|
|
|
export PATH=$PATH:$MOZ_FETCHES_DIR/clang/bin
|
|
|
|
build/unix/build-hfsplus/build-hfsplus.sh $MOZ_FETCHES_DIR
|
|
|
|
# Put a tarball in the artifacts dir
|
|
mkdir -p $UPLOAD_DIR
|
|
cp $MOZ_FETCHES_DIR/hfsplus-tools.tar.* $UPLOAD_DIR
|