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"`.)
This commit is contained in:
Geoffrey Thomas 2015-05-22 00:25:01 -04:00
parent 1e180b809f
commit dfacdcf25d

2
configure vendored
View file

@ -1,7 +1,7 @@
#!/bin/sh
msg() {
echo "configure: $1"
echo "configure: $*"
}
step_msg() {