[git commit] build system: make CONFIG_EXTRA_LDFLAGS go to LDFLAGS, not EXTRA_LDFLAGS

Denys Vlasenko vda.linux at googlemail.com
Tue Apr 14 12:15:15 UTC 2015


commit: http://git.busybox.net/busybox/commit/?id=e0ddb65cb234db6482d80febee1a63778f818db6
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 Makefile.flags         |    2 +-
 examples/android-build |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/Makefile.flags b/Makefile.flags
index 307afa7..a1ed148 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -163,7 +163,7 @@ SKIP_STRIP = y
 endif
 
 ifneq ($(CONFIG_EXTRA_LDFLAGS),)
-EXTRA_LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS)))
+LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS)))
 #"))
 endif
 
diff --git a/examples/android-build b/examples/android-build
index 89f3b63..123ba96 100755
--- a/examples/android-build
+++ b/examples/android-build
@@ -29,4 +29,6 @@ else
 	LDLIBS="dl m c gcc"
 fi
 
+# It's possible with newer version
+# you need to use CFLAGS_busybox instead of EXTRA_LDFLAGS below:
 make EXTRA_LDFLAGS="$LDFLAGS" LDLIBS="$LDLIBS" "$@"


More information about the busybox-cvs mailing list