aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-08-09 20:56:23 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-08-09 20:56:23 +0000
commit4720f5d1a1b7a324eb7f7956fb7d0c3951b94ac2 (patch)
treead8d4242826335c7e418648d60d82a55095f11e1 /coreutils
parentb1920df0b9c175aa944c9965e045d6a70ce40d22 (diff)
downloadbusybox-w32-4720f5d1a1b7a324eb7f7956fb7d0c3951b94ac2.tar.gz
busybox-w32-4720f5d1a1b7a324eb7f7956fb7d0c3951b94ac2.tar.bz2
busybox-w32-4720f5d1a1b7a324eb7f7956fb7d0c3951b94ac2.zip
Another whack at scripts/individual. Now builds 212 applets.
git-svn-id: svn://busybox.net/trunk/busybox@15793 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/install.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/coreutils/install.c b/coreutils/install.c
index f6d84c15f..d3d6a58a1 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -8,16 +8,10 @@
8 * owner/group, will probably modify bb_make_directory(...) 8 * owner/group, will probably modify bb_make_directory(...)
9 */ 9 */
10 10
11#include <sys/stat.h>
12#include <sys/types.h>
13#include <errno.h>
14#include <stdlib.h>
15#include <string.h>
16#include <unistd.h>
17#include <getopt.h> /* struct option */
18
19#include "busybox.h" 11#include "busybox.h"
20#include "libcoreutils/coreutils.h" 12#include "libcoreutils/coreutils.h"
13#include <libgen.h>
14#include <getopt.h> /* struct option */
21 15
22#define INSTALL_OPT_CMD 1 16#define INSTALL_OPT_CMD 1
23#define INSTALL_OPT_DIRECTORY 2 17#define INSTALL_OPT_DIRECTORY 2