diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -551,6 +551,7 @@ libs-y := \ | |||
551 | findutils/ \ | 551 | findutils/ \ |
552 | init/ \ | 552 | init/ \ |
553 | libbb/ \ | 553 | libbb/ \ |
554 | libbb/yescrypt/ \ | ||
554 | libpwdgrp/ \ | 555 | libpwdgrp/ \ |
555 | loginutils/ \ | 556 | loginutils/ \ |
556 | mailutils/ \ | 557 | mailutils/ \ |
@@ -688,8 +689,12 @@ quiet_cmd_busybox__ ?= LINK $@ | |||
688 | "$(core-y)" \ | 689 | "$(core-y)" \ |
689 | "$(libs-y)" \ | 690 | "$(libs-y)" \ |
690 | "$(LDLIBS)" \ | 691 | "$(LDLIBS)" \ |
691 | "$(CONFIG_EXTRA_LDLIBS)" \ | 692 | $(CONFIG_EXTRA_LDLIBS) \ |
692 | && $(srctree)/scripts/generate_BUFSIZ.sh --post include/common_bufsiz.h | 693 | && $(srctree)/scripts/generate_BUFSIZ.sh --post include/common_bufsiz.h |
694 | # ^^^ note: CONFIG_xyz strings already have double quotes: their value | ||
695 | # is '"LIB LIB2"', therefore $(CONFIG_EXTRA_LDLIBS) above must NOT be written | ||
696 | # as "$(CONFIG_EXTRA_LDLIBS)", it would be passed as ""LIB LIB2"", | ||
697 | # and LIB2 would end up in $9, not $8 (and lost or misinterpreted). | ||
693 | 698 | ||
694 | # Generate System.map | 699 | # Generate System.map |
695 | quiet_cmd_sysmap = SYSMAP | 700 | quiet_cmd_sysmap = SYSMAP |