diff options
author | Matt Kraai | 2001-04-23 18:53:07 +0000 |
---|---|---|
committer | Matt Kraai | 2001-04-23 18:53:07 +0000 |
commit | 91b2855ba8b9918b79dbe4b9188a3acccb41f7b7 (patch) | |
tree | b6ded0b21428442ba27167d8654410c8ce0c73d3 /include/applets.h | |
parent | 4e9267d76c7dc47064bc80b1f8542453725158d7 (diff) | |
download | busybox-91b2855ba8b9918b79dbe4b9188a3acccb41f7b7.zip busybox-91b2855ba8b9918b79dbe4b9188a3acccb41f7b7.tar.gz |
Rewrite cp and mv to be SUSv2 compliant.
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/applets.h b/include/applets.h index c303797..d3399b9 100644 --- a/include/applets.h +++ b/include/applets.h @@ -80,8 +80,8 @@ #ifdef BB_CMP APPLET(cmp, cmp_main, _BB_DIR_USR_BIN) #endif -#ifdef BB_CP_MV - APPLET(cp, cp_mv_main, _BB_DIR_BIN) +#ifdef BB_CP + APPLET(cp, cp_main, _BB_DIR_BIN) #endif #ifdef BB_CUT APPLET(cut, cut_main, _BB_DIR_USR_BIN) @@ -269,8 +269,8 @@ #ifdef BB_MT APPLET(mt, mt_main, _BB_DIR_BIN) #endif -#ifdef BB_CP_MV - APPLET(mv, cp_mv_main, _BB_DIR_BIN) +#ifdef BB_MV + APPLET(mv, mv_main, _BB_DIR_BIN) #endif #ifdef BB_NC APPLET(nc, nc_main, _BB_DIR_USR_BIN) |