diff options
author | Eric Andersen | 2003-08-08 22:26:06 +0000 |
---|---|---|
committer | Eric Andersen | 2003-08-08 22:26:06 +0000 |
commit | 2e9c25700061b23982f8600288178c1f6a370c1e (patch) | |
tree | b9523c8010e85f5879a89e2a4b7e202d674e1e1c /include/applets.h | |
parent | f1c56a9306680874577abf01749c4b33877eb89a (diff) | |
download | busybox-2e9c25700061b23982f8600288178c1f6a370c1e.zip busybox-2e9c25700061b23982f8600288178c1f6a370c1e.tar.gz |
Implement a minimalist 'last' which allows the LEAF project to
no longer need dumtp. Remove the 'dumtp' applet.
-Erik
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/applets.h b/include/applets.h index 2ee8164..cd50651 100644 --- a/include/applets.h +++ b/include/applets.h @@ -169,9 +169,6 @@ #ifdef CONFIG_DUMPLEASES APPLET(dumpleases, dumpleases_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) #endif -#ifdef CONFIG_DUTMP - APPLET(dutmp, dutmp_main, _BB_DIR_USR_SBIN, _BB_SUID_NEVER) -#endif #ifdef CONFIG_ECHO APPLET(echo, echo_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif @@ -316,6 +313,9 @@ #ifdef CONFIG_LASH APPLET(lash, lash_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_LAST + APPLET(last, last_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_LENGTH APPLET(length, length_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) #endif |