diff options
author | Rob Landley <rob@landley.net> | 2020-05-19 01:54:15 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-19 01:54:15 -0500 |
commit | 2d95e03b0e2dcc8bcb23a21feebff84bccf1084c (patch) | |
tree | 2b271580396fd4e0376f104f5ac0f03ed44ac58e /scripts | |
parent | 1d181824bb8fc92636d3eae52f2a0ee15117ee2f (diff) | |
download | toybox-2d95e03b0e2dcc8bcb23a21feebff84bccf1084c.tar.gz |
The standalone build for "make sh" has more dependencies because MAYFORK.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/genconfig.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/genconfig.sh b/scripts/genconfig.sh index b5637f86..58b99acd 100755 --- a/scripts/genconfig.sh +++ b/scripts/genconfig.sh @@ -151,6 +151,7 @@ while IFS=":" read FILE NAME do [ "$NAME" == help ] && continue [ "$NAME" == install ] && continue + [ "$NAME" == sh ] && FILE="toys/*/*.c" echo -e "$NAME: $FILE *.[ch] lib/*.[ch]\n\tscripts/single.sh $NAME\n" echo -e "test_$NAME:\n\tscripts/test.sh $NAME\n" [ "${FILE/pending//}" != "$FILE" ] && |