aboutsummaryrefslogtreecommitdiff
path: root/coreutils/install.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-08-09 20:56:23 +0000
committerRob Landley <rob@landley.net>2006-08-09 20:56:23 +0000
commit519d7df930d2ac14b7a833c0255a4a5abd5a329b (patch)
treead8d4242826335c7e418648d60d82a55095f11e1 /coreutils/install.c
parente55a73c7a89d9437bda82d317ee980989a5949db (diff)
downloadbusybox-w32-519d7df930d2ac14b7a833c0255a4a5abd5a329b.tar.gz
busybox-w32-519d7df930d2ac14b7a833c0255a4a5abd5a329b.tar.bz2
busybox-w32-519d7df930d2ac14b7a833c0255a4a5abd5a329b.zip
Another whack at scripts/individual. Now builds 212 applets.
Diffstat (limited to 'coreutils/install.c')
-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