diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2016-11-01 17:23:01 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-11-14 13:01:11 -0500 |
commit | 0eff2b604d855136d61962501c9819c340e937bf (patch) | |
tree | 3778cbb5d1f83b6bf2145e4e82d99a593325055e | |
parent | 942cd09609f9a79b4464f2445e10c9e09f6b78cc (diff) | |
download | meta-openembedded-0eff2b604d855136d61962501c9819c340e937bf.tar.gz |
nuttcp: fix QA warning for GNU_HASH
Set LDFLAGS explicitly for do_compile
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>
-rw-r--r-- | meta-networking/recipes-support/nuttcp/nuttcp_7.2.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/nuttcp/nuttcp_7.2.1.bb b/meta-networking/recipes-support/nuttcp/nuttcp_7.2.1.bb index 7f666fb059..9430add487 100644 --- a/meta-networking/recipes-support/nuttcp/nuttcp_7.2.1.bb +++ b/meta-networking/recipes-support/nuttcp/nuttcp_7.2.1.bb | |||
@@ -20,7 +20,7 @@ SRC_URI[sha256sum] = "c6e33810ccce67260f8d5d627f60e429d44f532365c58ed5673d035e2a | |||
20 | S = "${WORKDIR}" | 20 | S = "${WORKDIR}" |
21 | 21 | ||
22 | do_compile () { | 22 | do_compile () { |
23 | ${CC} ${CFLAGS} -o nuttcp nuttcp-${PV}.c | 23 | ${CC} ${CFLAGS} ${LDFLAGS} -o nuttcp nuttcp-${PV}.c |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install () { | 26 | do_install () { |