diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-12-29 10:44:13 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-30 23:38:12 +0000 |
commit | 312e9fe3f047547df4c21c8e666cc9aa70e15347 (patch) | |
tree | de6fdd6e8bd855ba97bc8b0266985ee9778da3b4 /meta/recipes-connectivity/socat | |
parent | 8413dede13efa8950b0135e09ae104a38c36649c (diff) | |
download | openembedded-core-contrib-312e9fe3f047547df4c21c8e666cc9aa70e15347.tar.gz |
recipes: Use -fcommon explicitly
This is needed with gcc 10
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/socat')
-rw-r--r-- | meta/recipes-connectivity/socat/socat_1.7.3.3.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/socat/socat_1.7.3.3.bb b/meta/recipes-connectivity/socat/socat_1.7.3.3.bb index 1dbbe5cd558..ee01578c1aa 100644 --- a/meta/recipes-connectivity/socat/socat_1.7.3.3.bb +++ b/meta/recipes-connectivity/socat/socat_1.7.3.3.bb @@ -44,6 +44,8 @@ PACKAGECONFIG ??= "readline" PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers" PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline" +CFLAGS += "-fcommon" + do_install_prepend () { mkdir -p ${D}${bindir} install -d ${D}${bindir} ${D}${mandir}/man1 |