diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2016-11-01 17:23:02 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-11-14 13:01:11 -0500 |
commit | 0a1144767ac1ea3246134b8cb4d619ec9727afd5 (patch) | |
tree | d0b8984ff425c6d528a40cc6e45274876da7d395 /meta-networking/recipes-protocols/zeroconf | |
parent | 0eff2b604d855136d61962501c9819c340e937bf (diff) | |
download | meta-openembedded-0a1144767ac1ea3246134b8cb4d619ec9727afd5.tar.gz |
zeroconf: fix QA warning for GNU_HASH
Add LDFLAGS variable to Makefile so that extra linker flags can be sent
via this variable.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-protocols/zeroconf')
-rw-r--r-- | meta-networking/recipes-protocols/zeroconf/zeroconf/makefile-add-ldflags.patch | 19 | ||||
-rw-r--r-- | meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/zeroconf/zeroconf/makefile-add-ldflags.patch b/meta-networking/recipes-protocols/zeroconf/zeroconf/makefile-add-ldflags.patch new file mode 100644 index 000000000..c5a4414db --- /dev/null +++ b/meta-networking/recipes-protocols/zeroconf/zeroconf/makefile-add-ldflags.patch | |||
@@ -0,0 +1,19 @@ | |||
1 | Add LDFLAGS variable to Makefile, make sure the extra linker flags can be passed. | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> | ||
6 | |||
7 | diff --git a/Makefile b/Makefile | ||
8 | index 77f3364..c98083f 100644 | ||
9 | --- a/Makefile | ||
10 | +++ b/Makefile | ||
11 | @@ -18,7 +18,7 @@ clean: | ||
12 | |||
13 | zeroconf: zeroconf.o delay.o | ||
14 | $(Q)echo "Creating $@" | ||
15 | - $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LIBS) | ||
16 | + $(Q)$(CC) $(CFLAGS) ${LDFLAGS} -o $@ $^ $(LIBS) | ||
17 | |||
18 | |||
19 | # Automatic dependency generation | ||
diff --git a/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb b/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb index 9307263c7..13f9b9b9a 100644 --- a/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb +++ b/meta-networking/recipes-protocols/zeroconf/zeroconf_0.9.bb | |||
@@ -18,6 +18,7 @@ PR = "r1" | |||
18 | 18 | ||
19 | SRC_URI = "http://www.progsoc.org/~wildfire/zeroconf/download/${BPN}-${PV}.tar.gz \ | 19 | SRC_URI = "http://www.progsoc.org/~wildfire/zeroconf/download/${BPN}-${PV}.tar.gz \ |
20 | file://compilefix.patch \ | 20 | file://compilefix.patch \ |
21 | file://makefile-add-ldflags.patch \ | ||
21 | file://zeroconf-default \ | 22 | file://zeroconf-default \ |
22 | file://debian-zeroconf" | 23 | file://debian-zeroconf" |
23 | 24 | ||