diff options
author | Rob Landley <rob@landley.net> | 2012-06-11 23:57:16 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-06-11 23:57:16 -0500 |
commit | 15a8d71674b437142fdc18408d22ec83d1dc245a (patch) | |
tree | dafafc081b374e193dce44fb0919f9de2bb9e39a /scripts | |
parent | 60a99fae7cccd8d67df9f6fadf33c9270e575e06 (diff) | |
download | toybox-15a8d71674b437142fdc18408d22ec83d1dc245a.tar.gz |
Multiplexer needs stayroot flag for suid handling.0.3.0
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index ddb98a09..b61d5b9b 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -21,7 +21,7 @@ function newtoys() sed -n -e '1,/^config [A-Z]/s/^USE_/&/p' $i || exit 1 done } -echo "NEWTOY(toybox, NULL, 0)" > generated/newtoys.h +echo "NEWTOY(toybox, NULL, TOYFLAG_STAYROOT)" > generated/newtoys.h newtoys | sed 's/\(.*TOY(\)\([^,]*\),\(.*\)/\2 \1\2,\3/' | sort -k 1,1 \ | sed 's/[^ ]* //' >> generated/newtoys.h |