diff options
author | Ron Yorston <rmy@pobox.com> | 2018-10-26 09:25:40 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-10-26 09:25:40 +0100 |
commit | 99821f00530766e658060e90c51b21ff0eed1226 (patch) | |
tree | 238d33f38ebc4ecd143d39e9925360dbab8c5513 | |
parent | eee3722fd32c8c0929cfbacdbe0b6524e1fd645c (diff) | |
download | busybox-w32-99821f00530766e658060e90c51b21ff0eed1226.tar.gz busybox-w32-99821f00530766e658060e90c51b21ff0eed1226.tar.bz2 busybox-w32-99821f00530766e658060e90c51b21ff0eed1226.zip |
libbb: add missing define that breaks non-default builds
-rw-r--r-- | libbb/appletlib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 7df75c665..add609b78 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c | |||
@@ -53,6 +53,8 @@ | |||
53 | || ENABLE_FEATURE_SH_STANDALONE \ | 53 | || ENABLE_FEATURE_SH_STANDALONE \ |
54 | || ENABLE_FEATURE_SH_NOFORK)) | 54 | || ENABLE_FEATURE_SH_NOFORK)) |
55 | # define IF_FULL_LIST_OPTION(...) __VA_ARGS__ | 55 | # define IF_FULL_LIST_OPTION(...) __VA_ARGS__ |
56 | #else | ||
57 | # define IF_FULL_LIST_OPTION(...) | ||
56 | #endif | 58 | #endif |
57 | 59 | ||
58 | #include "usage_compressed.h" | 60 | #include "usage_compressed.h" |