diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | include/usage.h | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -117,7 +117,7 @@ somewhere else. | |||
117 | 117 | ||
118 | To build out of tree, cd to an empty directory and configure busybox from there: | 118 | To build out of tree, cd to an empty directory and configure busybox from there: |
119 | 119 | ||
120 | make -f /path/to/source/Makefile defconfig | 120 | make KBUILD_SRC=/path/to/source -f /path/to/source/Makefile defconfig |
121 | make | 121 | make |
122 | make install | 122 | make install |
123 | 123 | ||
diff --git a/include/usage.h b/include/usage.h index 7a5cbcc9a..77bc3b167 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -4514,7 +4514,8 @@ | |||
4514 | ) | 4514 | ) |
4515 | 4515 | ||
4516 | /* "test --help" does not print help (POSIX compat), only "[ --help" does. | 4516 | /* "test --help" does not print help (POSIX compat), only "[ --help" does. |
4517 | * We display "<applet> EXPRESSION ]" here (not "<applet> EXPRESSION") */ | 4517 | * We display "<applet> EXPRESSION ]" here (not "<applet> EXPRESSION") |
4518 | * Unfortunately, it screws up generated BusyBox.html. TODO. */ | ||
4518 | #define test_trivial_usage \ | 4519 | #define test_trivial_usage \ |
4519 | "EXPRESSION ]" | 4520 | "EXPRESSION ]" |
4520 | #define test_full_usage "\n\n" \ | 4521 | #define test_full_usage "\n\n" \ |