Skip to content

Commit f197e08

Browse files
committed
---
yaml --- r: 60855 b: refs/heads/auto c: 308774e h: refs/heads/master i: 60853: b842f0c 60851: 0002820 60847: e894f8f v: v3
1 parent 1cd66ed commit f197e08

File tree

7 files changed

+16
-106
lines changed

7 files changed

+16
-106
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: a9c3b3885da3395427773a2f48a0e1f9f033551b
17+
refs/heads/auto: 308774e05b8c42e900d2c6125852f670cbc7dd85
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1919
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c

branches/auto/configure

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -970,6 +970,13 @@ then
970970
putvar CFG_CCACHE_CPP2
971971
fi
972972

973+
if [ ! -z "$CFG_ENABLE_CCACHE" ]
974+
then
975+
CFG_CCACHE_BASEDIR=${CFG_SRC_DIR}
976+
putvar CFG_CCACHE_BASEDIR
977+
fi
978+
979+
973980
if [ ! -z $BAD_PANDOC ]
974981
then
975982
CFG_PANDOC=

branches/auto/mk/platform.mk

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,11 @@ ifeq ($(CFG_CCACHE_CPP2),1)
396396
export CCACHE_CPP
397397
endif
398398

399+
ifdef CFG_CCACHE_BASEDIR
400+
CCACHE_BASEDIR=$(CFG_CCACHE_BASEDIR)
401+
export CCACHE_BASEDIR
402+
endif
403+
399404
define CFG_MAKE_TOOLCHAIN
400405
CFG_COMPILE_C_$(1) = $$(CC_$(1)) \
401406
$$(CFG_GCCISH_CFLAGS) \

branches/auto/src/etc/zsh/_rust

Lines changed: 0 additions & 102 deletions
This file was deleted.

branches/auto/src/librustc/middle/kind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ pub fn check_durable(tcx: ty::ctxt, ty: ty::t, sp: span) -> bool {
421421
match ty::get(ty).sty {
422422
ty::ty_param(*) => {
423423
tcx.sess.span_err(sp, "value may contain borrowed \
424-
pointers; use `'static` bound");
424+
pointers; add `'static` bound");
425425
}
426426
_ => {
427427
tcx.sess.span_err(sp, "value may contain borrowed \

branches/auto/src/test/compile-fail/kindck-owned-trait-scoped.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn to_foo_2<T:Copy>(t: T) -> @foo {
3737
// Not OK---T may contain borrowed ptrs and it is going to escape
3838
// as part of the returned foo value
3939
struct F<T> { f: T }
40-
@F {f:t} as @foo //~ ERROR value may contain borrowed pointers; use `'static` bound
40+
@F {f:t} as @foo //~ ERROR value may contain borrowed pointers; add `'static` bound
4141
}
4242

4343
fn to_foo_3<T:Copy + 'static>(t: T) -> @foo {

branches/auto/src/test/compile-fail/kindck-owned-trait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
trait foo { fn foo(&self); }
1212

1313
fn to_foo<T:Copy + foo>(t: T) -> @foo {
14-
@t as @foo //~ ERROR value may contain borrowed pointers; use `'static` bound
14+
@t as @foo //~ ERROR value may contain borrowed pointers; add `'static` bound
1515
}
1616

1717
fn to_foo2<T:Copy + foo + 'static>(t: T) -> @foo {

0 commit comments

Comments
 (0)