File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
language : shell
2
2
sudo : required
3
3
dist : trusty
4
+ group : deprecated-2017Q4
4
5
services :
5
6
- docker
6
7
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ impl Step for CargoBook {
159
159
160
160
let target = self . target ;
161
161
let name = self . name ;
162
- let src = PathBuf :: from ( "src/tools/cargo/src/doc/book" ) ;
162
+ let src = build . src . join ( "src/tools/cargo/src/doc/book" ) ;
163
163
164
164
let out = build. doc_out ( target) ;
165
165
t ! ( fs:: create_dir_all( & out) ) ;
Original file line number Diff line number Diff line change 10
10
11
11
set -ex
12
12
13
- url=" http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.22.0.tar.bz2"
14
- curl -f $url | tar xjf -
15
- cd crosstool-ng
13
+ url=" https://github.com/crosstool-ng/crosstool-ng/archive/crosstool-ng-1.22.0.tar.gz"
14
+ curl -Lf $url | tar xzf -
15
+ cd crosstool-ng-crosstool-ng-1.22.0
16
+ ./bootstrap
16
17
./configure --prefix=/usr/local
17
18
make -j$( nproc)
18
19
make install
19
20
cd ..
20
- rm -rf crosstool-ng
21
+ rm -rf crosstool-ng-crosstool-ng-1.22.0
You can’t perform that action at this time.
0 commit comments