mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
ssmping: add do_install to ssmping
The previous do_install is empty and do nothing. Tweak install doc dir, so the man doc could be installed to /usr/share/man rather than /usr/locale/man. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
committed by
Joe MacDonald
parent
c5398fc0fe
commit
4b6970c24c
@@ -0,0 +1,35 @@
|
|||||||
|
From 693cfce5431e191a3955fd56fa822927d92c9e43 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
||||||
|
Date: Fri, 7 Nov 2014 14:27:00 +0800
|
||||||
|
Subject: [PATCH] Makefile: tweak install dir
|
||||||
|
|
||||||
|
For oe-core, the man doc should be installed to /usr/share/man
|
||||||
|
rather than /usr/locale/man.
|
||||||
|
|
||||||
|
Upstream-Status: inappropriate (oe specific)
|
||||||
|
|
||||||
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||||
|
---
|
||||||
|
Makefile | 6 +++---
|
||||||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
index b5d12f8..9b2663c 100644
|
||||||
|
--- a/Makefile
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -14,9 +14,9 @@ install: ssmping asmping ssmpingd mcfirst
|
||||||
|
install -D asmping $(DESTDIR)$(PREFIX)/bin/asmping
|
||||||
|
install -D ssmpingd $(DESTDIR)$(PREFIX)/bin/ssmpingd
|
||||||
|
install -D mcfirst $(DESTDIR)$(PREFIX)/bin/mcfirst
|
||||||
|
- install -D ssmping.1 $(DESTDIR)$(PREFIX)/man/man1/ssmping.1
|
||||||
|
- install -D asmping.1 $(DESTDIR)$(PREFIX)/man/man1/asmping.1
|
||||||
|
- install -D mcfirst.1 $(DESTDIR)$(PREFIX)/man/man1/mcfirst.1
|
||||||
|
+ install -D ssmping.1 $(DESTDIR)$(PREFIX)/share/man/man1/ssmping.1
|
||||||
|
+ install -D asmping.1 $(DESTDIR)$(PREFIX)/share/man/man1/asmping.1
|
||||||
|
+ install -D mcfirst.1 $(DESTDIR)$(PREFIX)/share/man/man1/mcfirst.1
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(OBJ) joinch.o joingrp.o ssmping asmping ssmpingd mcfirst
|
||||||
|
--
|
||||||
|
1.9.1
|
||||||
|
|
||||||
@@ -3,8 +3,14 @@ HOMEPAGE = "http://www.venaas.no/multicast/ssmping/"
|
|||||||
LICENSE = "ISC"
|
LICENSE = "ISC"
|
||||||
LIC_FILES_CHKSUM = "file://asmping.c;beginline=2;endline=11;md5=1ca8d1a1ca931e5cfe604ebf20a78b71"
|
LIC_FILES_CHKSUM = "file://asmping.c;beginline=2;endline=11;md5=1ca8d1a1ca931e5cfe604ebf20a78b71"
|
||||||
|
|
||||||
SRC_URI = "http://www.venaas.no/multicast/ssmping/${BP}.tar.gz"
|
SRC_URI = "http://www.venaas.no/multicast/ssmping/${BP}.tar.gz \
|
||||||
|
file://0001-Makefile-tweak-install-dir.patch \
|
||||||
|
"
|
||||||
SRC_URI[md5sum] = "ad8e3d13f6d72918f73be7e7975d7fad"
|
SRC_URI[md5sum] = "ad8e3d13f6d72918f73be7e7975d7fad"
|
||||||
SRC_URI[sha256sum] = "22103a37eaa28489169a0927bc01e0596c3485fc4d29fc8456c07fd2c70fca6d"
|
SRC_URI[sha256sum] = "22103a37eaa28489169a0927bc01e0596c3485fc4d29fc8456c07fd2c70fca6d"
|
||||||
|
|
||||||
CFLAGS += "-D_GNU_SOURCE "
|
CFLAGS += "-D_GNU_SOURCE "
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user