diff options
author | Rob Landley <rob@landley.net> | 2013-10-03 03:18:00 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-10-03 03:18:00 -0500 |
commit | 207cadacd3cef42fa918981423c951f49443f032 (patch) | |
tree | 2633a186220f6265f98a0e2f582ede612121e436 /scripts/install.sh | |
parent | 7dc773bad5dc436518b822ba8c8ae400b5f36272 (diff) | |
download | toybox-207cadacd3cef42fa918981423c951f49443f032.tar.gz |
Switch flag generation from shell to C.
This should actually generate FLAG_longopt 0 #defines for disabled bare
longopts (ala ls without --color). Put temporary executables under "generated"
(including instlist for install).
Diffstat (limited to 'scripts/install.sh')
-rwxr-xr-x | scripts/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index d9b56567..8891a314 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -35,8 +35,8 @@ done echo "Compile instlist..." -$DEBUG $HOSTCC -I . scripts/install.c -o instlist || exit 1 -COMMANDS="$(./instlist $LONG_PATH)" +$DEBUG $HOSTCC -I . scripts/install.c -o generated/instlist || exit 1 +COMMANDS="$(generated/instlist $LONG_PATH)" echo "Install commands..." |