Skip to content

Commit f8db939

Browse files
committed
---
yaml --- r: 12535 b: refs/heads/master c: 7ba0dce h: refs/heads/master i: 12533: d7ce7fd 12531: dd34527 12527: e1abafb v: v3
1 parent 508fe66 commit f8db939

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: cd2effe0225c6174880716d949c6afe7cb251577
2+
refs/heads/master: 7ba0dce013b8c61dce46ba7cdbce4648c3e51259
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/configure

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -349,12 +349,15 @@ then
349349
fi
350350
fi
351351

352-
if [ ! -z "$CFG_ENABLE_LOCAL_RUST" -a ! -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc ]
352+
if [ ! -z "$CFG_ENABLE_LOCAL_RUST" ]
353353
then
354-
err "no local rust to use"
355-
else
356-
LRV=`${CFG_LOCAL_RUST_ROOT}/bin/rustc --version`
357-
step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: " $LRV
354+
if [ ! -f ${CFG_LOCAL_RUST_ROOT}/bin/rustc ]
355+
then
356+
err "no local rust to use"
357+
else
358+
LRV=`${CFG_LOCAL_RUST_ROOT}/bin/rustc --version`
359+
step_msg "using rustc at: ${CFG_LOCAL_RUST_ROOT} with version: " $LRV
360+
fi
358361
fi
359362

360363
if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]

0 commit comments

Comments
 (0)