aboutsummaryrefslogtreecommitdiff
path: root/applets.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-24 18:07:19 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-24 18:07:19 +0000
commit9f0fedb8f693829e7869439a2ad43cc1c21a3786 (patch)
tree10aa156e8cefad985eb3c9e5dafd68c22eb1e632 /applets.h
parent3a4aef5a4c145515a53c7d21a8d977fbc0892e32 (diff)
downloadbusybox-9f0fedb8f693829e7869439a2ad43cc1c21a3786.tar.gz
Split up chmod_chown_chgrp.c into 3 separate apps. This unfortunately
adds 384 bytes to the overall size. But having each app be standalone is the Right Thing(tm) so we will just have to live with it. -Erik
Diffstat (limited to 'applets.h')
-rw-r--r--applets.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/applets.h b/applets.h
index d3399b9af..0fd89c71a 100644
--- a/applets.h
+++ b/applets.h
@@ -59,14 +59,14 @@
#ifdef BB_CAT
APPLET(cat, cat_main, _BB_DIR_BIN)
#endif
-#ifdef BB_CHMOD_CHOWN_CHGRP
- APPLET(chgrp, chmod_chown_chgrp_main, _BB_DIR_BIN)
+#ifdef BB_CHGRP
+ APPLET(chgrp, chgrp_main, _BB_DIR_BIN)
#endif
-#ifdef BB_CHMOD_CHOWN_CHGRP
- APPLET(chmod, chmod_chown_chgrp_main, _BB_DIR_BIN)
+#ifdef BB_CHMOD
+ APPLET(chmod, chmod_main, _BB_DIR_BIN)
#endif
-#ifdef BB_CHMOD_CHOWN_CHGRP
- APPLET(chown, chmod_chown_chgrp_main, _BB_DIR_BIN)
+#ifdef BB_CHOWN
+ APPLET(chown, chown_main, _BB_DIR_BIN)
#endif
#ifdef BB_CHROOT
APPLET(chroot, chroot_main, _BB_DIR_USR_SBIN)