From c1db72874a1dbb92ee3dca555e1561e6a95b5ce2 Mon Sep 17 00:00:00 2001 From: andersen Date: Tue, 24 Apr 2001 18:07:19 +0000 Subject: 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 git-svn-id: svn://busybox.net/trunk/busybox@2422 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- include/applets.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/applets.h b/include/applets.h index d3399b9af..0fd89c71a 100644 --- a/include/applets.h +++ b/include/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) -- cgit v1.2.3-55-g6feb