fix build failure for libbusybox

This commit is contained in:
Denis Vlasenko 2008-04-29 00:10:27 +00:00
parent e4ed64067e
commit 10f6fb1d46

View File

@ -216,7 +216,8 @@ bool re_execed;
#endif #endif
#if !ENABLE_FEATURE_INDIVIDUAL /* If not built as a single-applet executable... */
#if !defined(SINGLE_APPLET_MAIN)
USE_FEATURE_SUID(static uid_t ruid;) /* real uid */ USE_FEATURE_SUID(static uid_t ruid;) /* real uid */
@ -729,7 +730,7 @@ void run_applet_and_exit(const char *name, char **argv)
exit(busybox_main(argv)); exit(busybox_main(argv));
} }
#endif /* !ENABLE_FEATURE_INDIVIDUAL */ #endif /* !defined(SINGLE_APPLET_MAIN) */
@ -739,7 +740,7 @@ int lbb_main(char **argv)
int main(int argc ATTRIBUTE_UNUSED, char **argv) int main(int argc ATTRIBUTE_UNUSED, char **argv)
#endif #endif
{ {
#if ENABLE_FEATURE_INDIVIDUAL #if defined(SINGLE_APPLET_MAIN)
/* Only one applet is selected by the user! */ /* Only one applet is selected by the user! */
/* applet_names in this case is just "applet\0\0" */ /* applet_names in this case is just "applet\0\0" */
lbb_prepare(applet_names USE_FEATURE_INDIVIDUAL(, argv)); lbb_prepare(applet_names USE_FEATURE_INDIVIDUAL(, argv));