We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40b86ba + b23c128 commit 5079a10Copy full SHA for 5079a10
configure
@@ -488,7 +488,7 @@ esac
488
489
# Continue supporting the old --enable-nightly flag to transition the bots
490
# XXX Remove me
491
-if [ $CFG_ENABLE_NIGHTLY -eq 1 ]
+if [ ! -z "$CFG_ENABLE_NIGHTLY" ]
492
then
493
CFG_RELEASE_CHANNEL=nightly
494
putvar CFG_RELEASE_CHANNEL
mk/stage0.mk
@@ -3,8 +3,11 @@
3
$(HBIN0_H_$(CFG_BUILD))/:
4
mkdir -p $@
5
6
+# On windows these two are the same, so cause a redifinition warning
7
+ifneq ($(HBIN0_H_$(CFG_BUILD)),$(HLIB0_H_$(CFG_BUILD)))
8
$(HLIB0_H_$(CFG_BUILD))/:
9
10
+endif
11
12
$(SNAPSHOT_RUSTC_POST_CLEANUP): \
13
$(S)src/snapshots.txt \
0 commit comments