Skip to content
Snippets Groups Projects
Commit 8b247a92 authored by Laura Abbott's avatar Laura Abbott Committed by Masahiro Yamada
Browse files

tools: build: Use HOSTLDFLAGS with fixdep


The final link of fixdep uses LDFLAGS but not the existing HOSTLDFLAGS.
Fix this.

Signed-off-by: default avatarLaura Abbott <labbott@redhat.com>
Acked-by: default avatarJiri Olsa <jolsa@kernel.org>
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 6fdbd824
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ $(OUTPUT)fixdep-in.o: FORCE ...@@ -43,7 +43,7 @@ $(OUTPUT)fixdep-in.o: FORCE
$(Q)$(MAKE) $(build)=fixdep $(Q)$(MAKE) $(build)=fixdep
$(OUTPUT)fixdep: $(OUTPUT)fixdep-in.o $(OUTPUT)fixdep: $(OUTPUT)fixdep-in.o
$(QUIET_LINK)$(HOSTCC) $(LDFLAGS) -o $@ $< $(QUIET_LINK)$(HOSTCC) $(HOSTLDFLAGS) -o $@ $<
FORCE: FORCE:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment