diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-07 17:05:42 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-07 17:05:42 +0000 |
commit | 76a6b236a9e2654e8c296c61cf71e0cf8bf4a64c (patch) | |
tree | 289014f80d67bd02f3e2295ab9dc7d8ff02f03c6 /Makefile.flags | |
parent | 3240474c23bf4f47536a854693b4cbacb54b9b04 (diff) |
reviving libbusybox, adding CONFIG_INDIVIDUAL part 2
Diffstat (limited to 'Makefile.flags')
-rw-r--r-- | Makefile.flags | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/Makefile.flags b/Makefile.flags index c64a5c838..764ce16e8 100644 --- a/Makefile.flags +++ b/Makefile.flags @@ -59,27 +59,24 @@ ifeq ($(CONFIG_STATIC),y) LDFLAGS += -static endif -BBOX_LIB_LIST = m crypt +LDLIBS = m crypt ifeq ($(CONFIG_PAM),y) -BBOX_LIB_LIST += pam pam_misc +LDLIBS += pam pam_misc endif ifeq ($(CONFIG_SELINUX),y) -BBOX_LIB_LIST += selinux sepol +LDLIBS += selinux sepol endif ifeq ($(CONFIG_EFENCE),y) -BBOX_LIB_LIST += efence +LDLIBS += efence endif ifeq ($(CONFIG_DMALLOC),y) -BBOX_LIB_LIST += dmalloc +LDLIBS += dmalloc endif -# For scripts/trylink -export BBOX_LIB_LIST - #LDFLAGS += -nostdlib LDFLAGS_ELF2FLT = -Wl,-elf2flt |