diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-04-14 14:15:15 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-04-14 14:15:15 +0200 |
commit | e0ddb65cb234db6482d80febee1a63778f818db6 (patch) | |
tree | e2057d908f6fe6b73ce0469fb3df6ee188e9d5ef /Makefile.flags | |
parent | 7b729edd33aea5361e0740df800a1a0a1ff70f7f (diff) | |
download | busybox-w32-e0ddb65cb234db6482d80febee1a63778f818db6.tar.gz busybox-w32-e0ddb65cb234db6482d80febee1a63778f818db6.tar.bz2 busybox-w32-e0ddb65cb234db6482d80febee1a63778f818db6.zip |
build system: make CONFIG_EXTRA_LDFLAGS go to LDFLAGS, not EXTRA_LDFLAGS
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'Makefile.flags')
-rw-r--r-- | Makefile.flags | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.flags b/Makefile.flags index 307afa7f5..a1ed1480a 100644 --- a/Makefile.flags +++ b/Makefile.flags | |||
@@ -163,7 +163,7 @@ SKIP_STRIP = y | |||
163 | endif | 163 | endif |
164 | 164 | ||
165 | ifneq ($(CONFIG_EXTRA_LDFLAGS),) | 165 | ifneq ($(CONFIG_EXTRA_LDFLAGS),) |
166 | EXTRA_LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS))) | 166 | LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS))) |
167 | #")) | 167 | #")) |
168 | endif | 168 | endif |
169 | 169 | ||