diff options
| author | Graydon Hoare <[email protected]> | 2011-03-25 15:07:27 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-25 15:07:27 -0700 |
| commit | b2427509e2d53897b7c7797d5948773b63aed3df (patch) | |
| tree | c5ae9e8136b521ccd19e2530ffbf5add8617ed55 /src/boot/util | |
| parent | stdlib: Implement a memory buffer reader, untested at the moment (diff) | |
| download | rust-b2427509e2d53897b7c7797d5948773b63aed3df.tar.xz rust-b2427509e2d53897b7c7797d5948773b63aed3df.zip | |
Another go at changing compile-command, this time using RBUILD env var.
Diffstat (limited to 'src/boot/util')
| -rw-r--r-- | src/boot/util/bits.ml | 2 | ||||
| -rw-r--r-- | src/boot/util/common.ml | 2 | ||||
| -rw-r--r-- | src/boot/util/fmt.ml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/boot/util/bits.ml b/src/boot/util/bits.ml index 27bb4902..aed0f2b8 100644 --- a/src/boot/util/bits.ml +++ b/src/boot/util/bits.ml @@ -111,6 +111,6 @@ let to_list (v:t) : int list = * fill-column: 78; * indent-tabs-mode: nil * buffer-file-coding-system: utf-8-unix - * compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; + * compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; * End: *) diff --git a/src/boot/util/common.ml b/src/boot/util/common.ml index c76da0de..63897217 100644 --- a/src/boot/util/common.ml +++ b/src/boot/util/common.ml @@ -818,6 +818,6 @@ let force_sz (a:size) : int64 = * fill-column: 78; * indent-tabs-mode: nil * buffer-file-coding-system: utf-8-unix - * compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; + * compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; * End: *) diff --git a/src/boot/util/fmt.ml b/src/boot/util/fmt.ml index 8fa41695..e62ec1ec 100644 --- a/src/boot/util/fmt.ml +++ b/src/boot/util/fmt.ml @@ -81,6 +81,6 @@ let sprintf_fmt * fill-column: 78; * indent-tabs-mode: nil * buffer-file-coding-system: utf-8-unix - * compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; + * compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; * End: *) |