From 8bfd215fb259dbf16b6c30f5853840d319a7555f Mon Sep 17 00:00:00 2001
From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Date: Fri, 17 Nov 2006 13:54:29 +0000
Subject: [PATCH] - Set INSTALL_OPTS according to the config.

---
 Makefile.custom | 6 ++++++
 1 file changed, 6 insertions(+)

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
 	$(Q)-$(SHELL) $^ >$@
 
 .PHONY: install
+ifeq ($(CONFIG_INSTALL_APPLET_SYMLINKS),y)
+INSTALL_OPTS:= --symlinks
+endif
+ifeq ($(CONFIG_INSTALL_APPLET_HARDLINKS),y)
+INSTALL_OPTS:= --hardlinks
+endif
 install: $(srctree)/applets/install.sh busybox busybox.links
 	$(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \
 		$(SHELL) $< $(CONFIG_PREFIX) $(INSTALL_OPTS)