mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-06 16:04:40 +02:00
Internal toolchains generally don't see these, as they build that toolchain with the default behavior they expect, so it's appropriate to include these fixes with the external toolchain configuration, for now. Signed-off-by: Christopher Larson <chris_larson@mentor.com>
24 lines
563 B
Diff
24 lines
563 B
Diff
---
|
|
Makefile.in | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
--- setserial-2.17.orig/Makefile.in
|
|
+++ setserial-2.17/Makefile.in
|
|
@@ -13,6 +13,7 @@ STRIP = @STRIP@
|
|
CC = @CC@
|
|
RM = rm -f
|
|
CFLAGS = @CFLAGS@
|
|
+LDFLAGS = @LDFLAGS@
|
|
DEFS = @DEFS@
|
|
INCS = -I.
|
|
TAR = tar
|
|
@@ -20,7 +21,7 @@ TAR = tar
|
|
all: setserial setserial.cat
|
|
|
|
setserial: setserial.c
|
|
- $(CC) $(CFLAGS) $(DEFS) $(INCS) setserial.c -o setserial
|
|
+ $(CC) $(CFLAGS) $(LDFLAGS) $(DEFS) $(INCS) setserial.c -o setserial
|
|
|
|
setserial.cat: setserial.8
|
|
nroff -man setserial.8 > setserial.cat
|