mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1111980 - Part 5 fix bug where using moztt from cache breaks builds. r=garndt
This commit is contained in:
parent
1420327259
commit
eaba4f63d3
@ -1 +1 @@
|
||||
0.0.27
|
||||
0.0.29
|
||||
|
@ -3,13 +3,13 @@
|
||||
gecko_dir=$1
|
||||
test -d $gecko_dir
|
||||
|
||||
if [ ! -d "gcc" ]; then
|
||||
if [ ! -d "$gecko_dir/gcc" ]; then
|
||||
cd $gecko_dir
|
||||
curl https://s3-us-west-2.amazonaws.com/test-caching/packages/gcc.tar.xz | tar Jx
|
||||
cd -
|
||||
fi
|
||||
|
||||
if [ ! -d "sccache" ]; then
|
||||
if [ ! -d "$gecko_dir/sccache" ]; then
|
||||
cd $gecko_dir
|
||||
curl https://s3-us-west-2.amazonaws.com/test-caching/packages/sccache.tar.bz2 | tar jx
|
||||
cd -
|
||||
@ -21,7 +21,7 @@ if [ ! -z $MOZTT_GIT_URL ] || [ ! -z $MOZTT_REVISION ]; then
|
||||
rm -rf moztt
|
||||
fi
|
||||
|
||||
if [ ! -d "moztt" ]; then
|
||||
if [ ! -d "$gecko_dir/moztt" ]; then
|
||||
moztt_url=${MOZTT_GIT_URL:=https://github.com/mozilla-b2g/moztt}
|
||||
moztt_revision=${MOZTT_REVISION:=master}
|
||||
tc-vcs clone $moztt_url $gecko_dir/moztt
|
||||
|
Loading…
Reference in New Issue
Block a user