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
This commit is contained in:
Eric Andersen
2001-04-24 18:07:19 +00:00
parent 3a4aef5a4c
commit 9f0fedb8f6
14 changed files with 605 additions and 184 deletions

View File

@ -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)