diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-11-17 13:54:29 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-11-17 13:54:29 +0000 |
commit | 8bfd215fb259dbf16b6c30f5853840d319a7555f (patch) | |
tree | 9174e4edc43f89d53268a8c9ccb92e2ddbbcdb65 | |
parent | 193bcf381eaf63aaf92ab8165b5091222b2ab0e6 (diff) | |
download | busybox-w32-8bfd215fb259dbf16b6c30f5853840d319a7555f.tar.gz busybox-w32-8bfd215fb259dbf16b6c30f5853840d319a7555f.tar.bz2 busybox-w32-8bfd215fb259dbf16b6c30f5853840d319a7555f.zip |
- Set INSTALL_OPTS according to the config.
-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) |