diff options
Diffstat (limited to 'Makefile.custom')
-rw-r--r-- | Makefile.custom | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.custom b/Makefile.custom index a011d53fd..5562ba396 100644 --- a/Makefile.custom +++ b/Makefile.custom | |||
@@ -12,6 +12,17 @@ endif | |||
12 | ifeq ($(CONFIG_INSTALL_APPLET_HARDLINKS),y) | 12 | ifeq ($(CONFIG_INSTALL_APPLET_HARDLINKS),y) |
13 | INSTALL_OPTS:= --hardlinks | 13 | INSTALL_OPTS:= --hardlinks |
14 | endif | 14 | endif |
15 | ifeq ($(CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS),y) | ||
16 | ifeq ($(CONFIG_INSTALL_SH_APPLET_SYMLINK),y) | ||
17 | INSTALL_OPTS:= --sw-sh-sym | ||
18 | endif | ||
19 | ifeq ($(CONFIG_INSTALL_SH_APPLET_HARDLINK),y) | ||
20 | INSTALL_OPTS:= --sw-sh-hard | ||
21 | endif | ||
22 | ifeq ($(CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER),y) | ||
23 | INSTALL_OPTS:= --scriptwrapper | ||
24 | endif | ||
25 | endif | ||
15 | install: $(srctree)/applets/install.sh busybox busybox.links | 26 | install: $(srctree)/applets/install.sh busybox busybox.links |
16 | $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \ | 27 | $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \ |
17 | $(SHELL) $< $(CONFIG_PREFIX) $(INSTALL_OPTS) | 28 | $(SHELL) $< $(CONFIG_PREFIX) $(INSTALL_OPTS) |