diff options
author | Elliott Hughes <enh@google.com> | 2016-02-27 13:27:26 -0800 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-01 21:12:25 -0600 |
commit | d3904ef62366c6a5ba5c47a583f114ac4338698b (patch) | |
tree | 7e3aa33d9de4a32eb23bd32e9f000f860662d3d6 /Makefile | |
parent | bef3a510a63543f94c8bdbb229a2f5f538fa0ec1 (diff) | |
download | toybox-d3904ef62366c6a5ba5c47a583f114ac4338698b.tar.gz |
Fix "make help" again.
Same missing quote at end of line as last time. The new additions to
the help are very useful though.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ help:: @echo ' change - Build each command standalone under change/.' @echo ' baseline - Create toybox_old for use by bloatcheck.' @echo ' bloatcheck - Report size differences between old and current versions' - @echo ' test_COMMAND - Run tests for COMMAND (test_ps, test_cat, etc.) + @echo ' test_COMMAND - Run tests for COMMAND (test_ps, test_cat, etc.)' @echo ' test - Run test suite against all compiled commands.' @echo ' export TEST_HOST=1 to test host command, VERBOSE=1' @echo ' to show diff, VERBOSE=fail to stop after first failure.' |