[oe-commits] Jeremy Lainé : irda-utils: add patch to use LDFLAGS ( fixes QA error)

GIT User account git at amethyst.openembedded.net
Tue Apr 21 13:41:23 UTC 2009


Module: openembedded.git
Branch: stable/2009
Commit: 7d3941e87b2c16e5c9c009a14a1aa77603b13ea2
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=7d3941e87b2c16e5c9c009a14a1aa77603b13ea2

Author: Jeremy Lainé <jeremy.laine at m4x.org>
Date:   Mon Apr 20 05:25:03 2009 +0000

irda-utils: add patch to use LDFLAGS (fixes QA error)

Acked-by: Koen Kooi <koen at openembedded.org>
Acked-by: Denys Dmytriyenko <denis at denix.org>

Signed-off-by: Marcin Juszkiewicz <hrw at openembedded.org>

---

 recipes/irda-utils/irda-utils/ldflags.patch |   28 +++++++++++++++++++++++++++
 recipes/irda-utils/irda-utils_0.9.16.bb     |    3 +-
 2 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/recipes/irda-utils/irda-utils/ldflags.patch b/recipes/irda-utils/irda-utils/ldflags.patch
new file mode 100644
index 0000000..bb4f5cd
--- /dev/null
+++ b/recipes/irda-utils/irda-utils/ldflags.patch
@@ -0,0 +1,28 @@
+diff -urN irda-utils-0.9.16.orig/irattach/Makefile irda-utils-0.9.16/irattach/Makefile
+--- irda-utils-0.9.16.orig/irattach/Makefile	2004-03-31 23:55:41.000000000 +0200
++++ irda-utils-0.9.16/irattach/Makefile	2009-04-08 10:17:39.000000000 +0200
+@@ -53,10 +53,10 @@
+ all: $(TARGETS)
+ 
+ irattach: irattach.o util.o
+-	$(CC) $(CFLAGS) irattach.o util.o -o $@
++	$(CC) $(CFLAGS) $(LDFLAGS) irattach.o util.o -o $@
+ 
+ dongle_attach: dongle_attach.o
+-	$(CC) $(CFLAGS) dongle_attach.o -o $@
++	$(CC) $(CFLAGS) $(LDFLAGS) dongle_attach.o -o $@
+ 
+ .c.o:
+ 	$(CC) $(CFLAGS) $(INCLUDES) -c $<
+diff -urN irda-utils-0.9.16.orig/irdaping/Makefile irda-utils-0.9.16/irdaping/Makefile
+--- irda-utils-0.9.16.orig/irdaping/Makefile	2004-03-31 23:55:47.000000000 +0200
++++ irda-utils-0.9.16/irdaping/Makefile	2009-04-08 10:17:57.000000000 +0200
+@@ -52,7 +52,7 @@
+ all:: irdaping
+ 
+ irdaping: $(OBJS)
+-	$(CC) $(CFLAGS) $(OBJS) -o $@
++	$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
+ 
+ .c.o:
+ 	$(CC) $(CFLAGS) $(INCLUDES) -c $<
diff --git a/recipes/irda-utils/irda-utils_0.9.16.bb b/recipes/irda-utils/irda-utils_0.9.16.bb
index 19bcdf3..1d9d184 100644
--- a/recipes/irda-utils/irda-utils_0.9.16.bb
+++ b/recipes/irda-utils/irda-utils_0.9.16.bb
@@ -3,11 +3,12 @@ IrDA allows communication over Infrared with other devices \
 such as phones and laptops."
 SECTION = "base"
 LICENSE = "GPL"
-PR = "r8"
+PR = "r9"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \
 	   file://configure.patch;patch=1 \
 	   file://m4.patch;patch=1 \
+	   file://ldflags.patch;patch=1 \
 	   file://init"
 
 export SYS_INCLUDES="-I${STAGING_INCDIR}"





More information about the Openembedded-commits mailing list