summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.17.25.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-01-02 15:21:35 -0800
committerKhem Raj <raj.khem@gmail.com>2019-01-04 18:29:39 -0800
commit6738435fe9527d7b1d9b7bd1542dcdf54af704d0 (patch)
tree871a6a5ca10c66d07bf5cd59d2268b804cd4cb15 /meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.17.25.bb
parent005665855f7876248f39f7ab7a449e777497c427 (diff)
downloadmeta-openembedded-6738435fe9527d7b1d9b7bd1542dcdf54af704d0.tar.gz
start-stop-daemon: Upgrade to 1.18.25
Import patches from oe-core to fix build for mips64 Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.17.25.bb')
-rw-r--r--meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.17.25.bb39
1 files changed, 0 insertions, 39 deletions
diff --git a/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.17.25.bb b/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.17.25.bb
deleted file mode 100644
index b9b22a316e..0000000000
--- a/meta-oe/recipes-support/start-stop-daemon/start-stop-daemon_1.17.25.bb
+++ /dev/null
@@ -1,39 +0,0 @@
1SUMMARY = "Debian's start-stop-daemon utility extracted from the dpkg \
2package"
3LICENSE = "PD"
4LIC_FILES_CHKSUM = "file://utils/start-stop-daemon.c;endline=21;md5=8fbd0497a7d0b01e99820bffcb58e9ad"
5# start-stop-daemon is usually shipped by dpkg
6DEPENDS = "ncurses"
7RCONFLICTS_${PN} = "dpkg"
8
9SRC_URI = " \
10 ${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.xz \
11 file://0001-dpkg-start-stop-daemon-Accept-SIG-prefixed-signal-na.patch \
12 file://0001-Add-linux-musleabi-to-ostable.patch \
13"
14
15SRC_URI[md5sum] = "e48fcfdb2162e77d72c2a83432d537ca"
16SRC_URI[sha256sum] = "07019d38ae98fb107c79dbb3690cfadff877f153b8c4970e3a30d2e59aa66baa"
17
18inherit autotools gettext pkgconfig
19
20S = "${WORKDIR}/dpkg-${PV}"
21
22EXTRA_OECONF = " \
23 --without-bz2 \
24 --without-selinux \
25"
26
27do_install_append () {
28 # remove everything that is not related to start-stop-daemon, since there
29 # is no explicit rule for only installing ssd
30 find ${D} -type f -not -name "*start-stop-daemon*" -exec rm {} \;
31 find ${D} -depth -type d -empty -exec rmdir {} \;
32
33 # support for buggy init.d scripts that refer to an alternative
34 # explicit path to start-stop-daemon
35 if [ "${base_sbindir}" != "${sbindir}" ]; then
36 mkdir -p ${D}${base_sbindir}
37 ln -sf ${sbindir}/start-stop-daemon ${D}${base_sbindir}/start-stop-daemon
38 fi
39}