зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
308 B
Bash
Executable File
15 строки
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
|