Skip to content

Commit 2fa9e22

Browse files
authored
Merge pull request #1424 from citrus-it/cargo-c
cargo-c: fix build
2 parents 8aaeffc + b2d6ce9 commit 2fa9e22

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build/cargo-c/build.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ build() {
4848

4949
pushd $TMPDIR/$BUILDDIR >/dev/null
5050

51-
logcmd $CARGO install --root=$DESTDIR$PREFIX --path=. \
51+
# os_info 3.8.0 is broken on illumos -
52+
# See https://github.com/stanislav-tkach/os_info/issues/371
53+
logcmd $CARGO update --package [email protected] --precise 3.7.0
54+
logcmd $CARGO install --locked --root=$DESTDIR$PREFIX --path=. \
5255
|| logerr "build failed"
5356

5457
popd >/dev/null

0 commit comments

Comments
 (0)