forked from mirrors/gecko-dev
And remove the use of tooltool-download where it's not needed anymore. Differential Revision: https://phabricator.services.mozilla.com/D40714
14 lines
308 B
Bash
Executable file
14 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
|