Skip to content

Commit 766d54d

Browse files
committed
Fix a bunch of compile-command lines to use RBUILD
1 parent 7e806c5 commit 766d54d

30 files changed

+30
-30
lines changed

src/comp/back/upcall.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,6 @@ fn declare_upcalls(type_names tn, ModuleRef llmod) -> @upcalls {
137137
// indent-tabs-mode: nil
138138
// c-basic-offset: 4
139139
// buffer-file-coding-system: utf-8-unix
140-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
140+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
141141
// End:
142142
//

src/lib/dbg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ fn trap(str s) { rustrt::debug_trap(s); }
5757
// indent-tabs-mode: nil
5858
// c-basic-offset: 4
5959
// buffer-file-coding-system: utf-8-unix
60-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
60+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
6161
// End:

src/lib/deque.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,5 @@ fn create[T]() -> t[T] {
113113
// indent-tabs-mode: nil
114114
// c-basic-offset: 4
115115
// buffer-file-coding-system: utf-8-unix
116-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
116+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
117117
// End:

src/lib/extfmt.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,5 +421,5 @@ mod rt {
421421
// indent-tabs-mode: nil
422422
// c-basic-offset: 4
423423
// buffer-file-coding-system: utf-8-unix
424-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
424+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
425425
// End:

src/lib/getopts.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,5 +287,5 @@ fn opt_default(match m, str nm, str def) -> option::t[str] {
287287
// indent-tabs-mode: nil
288288
// c-basic-offset: 4
289289
// buffer-file-coding-system: utf-8-unix
290-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
290+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
291291
// End:

src/lib/int.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ fn pow(int base, uint exponent) -> int {
6666
// indent-tabs-mode: nil
6767
// c-basic-offset: 4
6868
// buffer-file-coding-system: utf-8-unix
69-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
69+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
7070
// End:

src/lib/io.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,6 @@ fn seek_in_buf(int offset, uint pos, uint len, seek_style whence) -> uint {
454454
// indent-tabs-mode: nil
455455
// c-basic-offset: 4
456456
// buffer-file-coding-system: utf-8-unix
457-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
457+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
458458
// End:
459459
//

src/lib/linux_os.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ fn waitpid(int pid) -> int {
7878
// indent-tabs-mode: nil
7979
// c-basic-offset: 4
8080
// buffer-file-coding-system: utf-8-unix
81-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
81+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
8282
// End:

src/lib/list.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ fn append[T](&list[T] l, &list[T] m) -> list[T] {
7575
// indent-tabs-mode: nil
7676
// c-basic-offset: 4
7777
// buffer-file-coding-system: utf-8-unix
78-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
78+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
7979
// End:

src/lib/macos_os.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ fn waitpid(int pid) -> int {
7575
// indent-tabs-mode: nil
7676
// c-basic-offset: 4
7777
// buffer-file-coding-system: utf-8-unix
78-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
78+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
7979
// End:

src/lib/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ fn may[T](fn(&T) f, &t[T] opt) {
4141
// indent-tabs-mode: nil
4242
// c-basic-offset: 4
4343
// buffer-file-coding-system: utf-8-unix
44-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
44+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
4545
// End:

src/lib/posix_fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ const char alt_path_sep = '/';
4242
// indent-tabs-mode: nil
4343
// c-basic-offset: 4
4444
// buffer-file-coding-system: utf-8-unix
45-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
45+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
4646
// End:

src/lib/rand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ fn mk_rng() -> rng {
3030
// indent-tabs-mode: nil
3131
// c-basic-offset: 4
3232
// buffer-file-coding-system: utf-8-unix
33-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
33+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
3434
// End:

src/lib/sha1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,5 +267,5 @@ fn mk_sha1() -> sha1 {
267267
// indent-tabs-mode: nil
268268
// c-basic-offset: 4
269269
// buffer-file-coding-system: utf-8-unix
270-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
270+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
271271
// End:

src/lib/sort.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,5 +136,5 @@ fn quick_sort3[T](lteq[T] compare_func_lt, lteq[T] compare_func_eq,
136136
// indent-tabs-mode: nil
137137
// c-basic-offset: 4
138138
// buffer-file-coding-system: utf-8-unix
139-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
139+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
140140
// End:

src/lib/sys.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ native "rust" mod rustrt {
1919
// indent-tabs-mode: nil
2020
// c-basic-offset: 4
2121
// buffer-file-coding-system: utf-8-unix
22-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
22+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
2323
// End:

src/lib/task.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ fn join(task t) {
2727
// indent-tabs-mode: nil
2828
// c-basic-offset: 4
2929
// buffer-file-coding-system: utf-8-unix
30-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
30+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
3131
// End:

src/lib/u8.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ iter range(u8 lo, u8 hi) -> u8 { while (lo < hi) { put lo; lo += 1u8; } }
2929
// indent-tabs-mode: nil
3030
// c-basic-offset: 4
3131
// buffer-file-coding-system: utf-8-unix
32-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
32+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
3333
// End:

src/lib/uint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,5 @@ fn to_str(uint num, uint radix) -> str {
9898
// indent-tabs-mode: nil
9999
// c-basic-offset: 4
100100
// buffer-file-coding-system: utf-8-unix
101-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
101+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
102102
// End:

src/lib/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ fn orb(&bool a, &bool b) -> bool { ret a || b; }
2525
// indent-tabs-mode: nil
2626
// c-basic-offset: 4
2727
// buffer-file-coding-system: utf-8-unix
28-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
28+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
2929
// End:

src/lib/vec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,5 +342,5 @@ fn truncate[T](&mutable vec[mutable? T] v, uint new_len) {
342342
// indent-tabs-mode: nil
343343
// c-basic-offset: 4
344344
// buffer-file-coding-system: utf-8-unix
345-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
345+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
346346
// End:

src/lib/win32_fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ const char alt_path_sep = '\\';
2323
// indent-tabs-mode: nil
2424
// c-basic-offset: 4
2525
// buffer-file-coding-system: utf-8-unix
26-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
26+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
2727
// End:

src/lib/win32_os.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ fn waitpid(int pid) -> int { ret rustrt::rust_process_wait(pid); }
6868
// indent-tabs-mode: nil
6969
// c-basic-offset: 4
7070
// buffer-file-coding-system: utf-8-unix
71-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
71+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
7272
// End:

src/test/run-pass/lib-qsort.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ fn main() {
3939
// indent-tabs-mode: nil
4040
// c-basic-offset: 4
4141
// buffer-file-coding-system: utf-8-unix
42-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
42+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
4343
// End:

src/test/run-pass/lib-qsort3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ fn main() {
4141
// indent-tabs-mode: nil
4242
// c-basic-offset: 4
4343
// buffer-file-coding-system: utf-8-unix
44-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
44+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
4545
// End:

src/test/run-pass/lib-sha1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,5 @@ fn main() {
8686
// indent-tabs-mode: nil
8787
// c-basic-offset: 4
8888
// buffer-file-coding-system: utf-8-unix
89-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
89+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
9090
// End:

src/test/run-pass/rt-circular-buffer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ fn main() {
104104
// indent-tabs-mode: nil
105105
// c-basic-offset: 4
106106
// buffer-file-coding-system: utf-8-unix
107-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
107+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
108108
// End:

src/test/run-pass/spawn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ fn child(int i) { log_err i; }
1515
// indent-tabs-mode: nil
1616
// c-basic-offset: 4
1717
// buffer-file-coding-system: utf-8-unix
18-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
18+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
1919
// End:

src/test/run-pass/spawn2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ fn child(int i1,
3535
// indent-tabs-mode: nil
3636
// c-basic-offset: 4
3737
// buffer-file-coding-system: utf-8-unix
38-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
38+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
3939
// End:

src/test/run-pass/task-killjoin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ fn main() {
3535
// indent-tabs-mode: nil
3636
// c-basic-offset: 4
3737
// buffer-file-coding-system: utf-8-unix
38-
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
38+
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
3939
// End:

0 commit comments

Comments
 (0)