diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-04-28 00:38:47 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-09 10:39:35 +0100 |
commit | 1df41d0b48291f586f84b6b74003ea888be72e65 (patch) | |
tree | 298bc0b7d25dff2b09f628c247d3d62a3592637c | |
parent | 269d285f57886df8985cb730a11561c74d642ff8 (diff) | |
download | openembedded-core-1df41d0b48291f586f84b6b74003ea888be72e65.tar.gz openembedded-core-1df41d0b48291f586f84b6b74003ea888be72e65.tar.bz2 openembedded-core-1df41d0b48291f586f84b6b74003ea888be72e65.zip |
xinetd: Use libtirpc even on glibc
We dropped in-tree obsoleted rpc from glibc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta/recipes-extended/xinetd/xinetd_2.3.15.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb index 1beb5456e1..6e43f5be6f 100644 --- a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb +++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb @@ -6,8 +6,7 @@ HOMEPAGE = "https://github.com/xinetd-org/xinetd" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=8ad8615198542444f84d28a6cf226dd8" -DEPENDS = "" -DEPENDS_append_libc-musl = " libtirpc " +DEPENDS += "libtirpc" PR = "r2" # Blacklist a bogus tag in upstream check @@ -42,8 +41,8 @@ EXTRA_OECONF="--disable-nls" PACKAGECONFIG ??= "tcp-wrappers" PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers" -CFLAGS_append_libc-musl = " -I${STAGING_INCDIR}/tirpc " -LDFLAGS_append_libc-musl = " -ltirpc " +CFLAGS += "-I${STAGING_INCDIR}/tirpc" +LDFLAGS += "-ltirpc" do_configure() { # Looks like configure.in is broken, so we are skipping |