* build-aux/make-info-dir: Avoid bashism (bug#70484).
This commit is contained in:
parent
81476fa19e
commit
42766f95e5
1 changed files with 3 additions and 2 deletions
|
@ -33,7 +33,8 @@
|
||||||
|
|
||||||
## Header contains non-printing characters, so this is more
|
## Header contains non-printing characters, so this is more
|
||||||
## reliable than using awk.
|
## reliable than using awk.
|
||||||
cat <"${1?}" || exit
|
test $# -ge 2 || exit 1
|
||||||
|
cat <"$1"
|
||||||
shift
|
shift
|
||||||
|
|
||||||
exec "${AWK-awk}" '
|
exec "${AWK-awk}" '
|
||||||
|
@ -101,4 +102,4 @@ exec "${AWK-awk}" '
|
||||||
if (data[dircat])
|
if (data[dircat])
|
||||||
printf "\n%s\n%s", topic[dircat], data[dircat]
|
printf "\n%s\n%s", topic[dircat], data[dircat]
|
||||||
}
|
}
|
||||||
' "${@?}"
|
' "$@"
|
||||||
|
|
Loading…
Add table
Reference in a new issue