build: Oops, configure SHELLS as shell.

This commit is contained in:
Jan Nieuwenhuizen 2018-11-25 11:48:12 +01:00
parent 7f6b88c43b
commit 7f2b1b1ff1
1 changed files with 8 additions and 4 deletions

12
configure vendored
View File

@ -80,13 +80,17 @@ subst () {
$1 > $2
}
subst bin/gash.in bin/gash
chmod +x bin/gash
SHELLS="
bash
gash
sh
"
for shell in $SHELLS; do
subst ${srcdest}bin/gash.in bin/$shell
chmod +x bin/$shell
done
BUILTINS="
basename
cat
@ -107,7 +111,7 @@ touch
wc
which
"
for builtin in $BUILTINS $SHELLS; do
for builtin in $BUILTINS; do
subst ${srcdest}bin/builtin.in bin/$builtin
chmod +x bin/$builtin
done