diff options
| author | Geoffrey Thomas <geofft@ldpreload.com> | 2015-05-22 00:25:01 -0400 |
|---|---|---|
| committer | Geoffrey Thomas <geofft@ldpreload.com> | 2015-05-22 00:39:24 -0400 |
| commit | dfacdcf25d31a32ccf8578f8af304b2d7f38f33d (patch) | |
| tree | a6f4e13cec6e0767fccdd1522097b868d3ba0563 | |
| parent | 1e180b809fed81b758b1ca743ba3af24504239ca (diff) | |
| download | rust-dfacdcf25d31a32ccf8578f8af304b2d7f38f33d.tar.gz rust-dfacdcf25d31a32ccf8578f8af304b2d7f38f33d.zip | |
configure: Fix printing of commands from `run`
The `run` function passed its argument to `msg` via `"$@"`, but `msg` only printed its first argument. I think the intention was for `msg` to print all its arguments. (If not, `run` should only `msg "$1"`.)
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 7850d7f03d8..fe9e7cf7f7a 100755 --- a/configure +++ b/configure @@ -1,7 +1,7 @@ #!/bin/sh msg() { - echo "configure: $1" + echo "configure: $*" } step_msg() { |
