mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
dcf31c6a1e
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
17 lines
459 B
Diff
17 lines
459 B
Diff
Make jhead use LDFLAGS for the final link.
|
|
|
|
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
|
|
|
diff -Nura jhead-2.97.orig/makefile jhead-2.97/makefile
|
|
--- jhead-2.97.orig/makefile 2013-03-27 09:22:38.759966389 -0300
|
|
+++ jhead-2.97/makefile 2013-03-27 09:25:06.290691745 -0300
|
|
@@ -14,7 +14,7 @@
|
|
${CC} $(CFLAGS) -c $< -o $@
|
|
|
|
jhead: $(objs) jhead.h
|
|
- ${CC} -o jhead $(objs) -lm
|
|
+ ${CC} $(LDFLAGS) -o jhead $(objs) -lm
|
|
|
|
clean:
|
|
rm -f $(objs) jhead
|