aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/pimd/pimd_2.3.2.bb
blob: 2faa7cb1cedef9abd470925c1fccea0860fa1a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SUMMARY = "pimd is a lightweight stand-alone PIM-SM v2 multicast routing daemon."
HOMEPAGE = "http://troglobit.com/pimd.html"
SECTION = "net"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=94f108f91fab720d62425770b70dd790"

SRC_URI = "ftp://ftp.troglobit.com/pimd/${BP}.tar.gz \
           file://0001-configure-Dont-use-uname-to-determine-target-OS.patch \
           "
SRC_URI[md5sum] = "a3c03e40540980b2c06e265a17988e60"
SRC_URI[sha256sum] = "c77a9812751f114490a28a6839b16aac8b020c8d9fd6aa22bf3880c054e19f1d"

EXTRA_OECONF_append_libc-musl = " --embedded-libc"

inherit autotools-brokensep

do_configure() {
    oe_runconf
}
pgrade-to-20170116 OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/util-linux/util-linux/configure-sbindir.patch
blob: a5b1ff12e53063dd83974280918b0191e2a196ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
util-linux: take ${sbindir} from the environment if it is set there
fix the test, the [ ] syntax was getting eaten by autoconf

Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Saul Wold <sgw@linux.intel.com
Upstream-Status: Inappropriate [configuration]

Index: util-linux-2.22.1/configure.ac
===================================================================
--- util-linux-2.22.1.orig/configure.ac
+++ util-linux-2.22.1/configure.ac
@@ -73,7 +73,10 @@ AC_SUBST([localstatedir])
 usrbin_execdir='${exec_prefix}/bin'
 AC_SUBST([usrbin_execdir])
 
-usrsbin_execdir='${exec_prefix}/sbin'
+if test -z "$usrsbin_execdir" ;
+then
+   usrsbin_execdir='${exec_prefix}/sbin'
+fi
 AC_SUBST([usrsbin_execdir])
 
 case $libdir in