diff options
-rw-r--r-- | Makefile.custom | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.custom b/Makefile.custom index 11141e71f..13da38e76 100644 --- a/Makefile.custom +++ b/Makefile.custom | |||
@@ -9,6 +9,12 @@ busybox.links: $(srctree)/applets/busybox.mkll $(objtree)/include/autoconf.h $(s | |||
9 | $(Q)-$(SHELL) $^ >$@ | 9 | $(Q)-$(SHELL) $^ >$@ |
10 | 10 | ||
11 | .PHONY: install | 11 | .PHONY: install |
12 | ifeq ($(CONFIG_INSTALL_APPLET_SYMLINKS),y) | ||
13 | INSTALL_OPTS:= --symlinks | ||
14 | endif | ||
15 | ifeq ($(CONFIG_INSTALL_APPLET_HARDLINKS),y) | ||
16 | INSTALL_OPTS:= --hardlinks | ||
17 | endif | ||
12 | install: $(srctree)/applets/install.sh busybox busybox.links | 18 | install: $(srctree)/applets/install.sh busybox busybox.links |
13 | $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \ | 19 | $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \ |
14 | $(SHELL) $< $(CONFIG_PREFIX) $(INSTALL_OPTS) | 20 | $(SHELL) $< $(CONFIG_PREFIX) $(INSTALL_OPTS) |