Skip to content

Commit dfacdcf

Browse files
committed
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"`.)
1 parent 1e180b8 commit dfacdcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
msg() {
4-
echo "configure: $1"
4+
echo "configure: $*"
55
}
66

77
step_msg() {

0 commit comments

Comments
 (0)