summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb
diff options
context:
space:
mode:
authorJackie Huang <jackie.huang@windriver.com>2012-11-08 09:01:49 +0000
committerJoe MacDonald <joe.macdonald@windriver.com>2012-11-19 11:18:30 -0500
commit5955e22f6ecf0196a129c27641c6d85820f8b962 (patch)
treef0d26e3418b93ce16cf64c881786a3ae71fef76d /meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb
parent4c20b896d8b709fbaed8888da98e81de74292b90 (diff)
downloadmeta-openembedded-5955e22f6ecf0196a129c27641c6d85820f8b962.tar.gz
ptpd-2.2.0: drop the patch adjust-daemon-name.patch
The patch adjust-daemon-name.patch is to change the daemon name ptpd2 back to ptpd, which broke some functionality: root@qemu0:~# ptpd -g Error: 1 ptpd daemon(s) detected in parallel, but we were not expecting any. Exiting. so drop it and use the default daemon name ptpd2. Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Diffstat (limited to 'meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb')
-rw-r--r--meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb b/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb
index 3449ee8491..39a0cdd52d 100644
--- a/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb
+++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb
@@ -8,8 +8,9 @@ SECTION = "network"
8LICENSE = "BSD" 8LICENSE = "BSD"
9LIC_FILES_CHKSUM = "file://../COPYRIGHT;md5=3d8ac2c46c116bce2d2ad838b6cf3491" 9LIC_FILES_CHKSUM = "file://../COPYRIGHT;md5=3d8ac2c46c116bce2d2ad838b6cf3491"
10 10
11PR = "r1"
12
11SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz \ 13SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz \
12 file://adjust-daemon-name.patch;striplevel=2 \
13 file://ld-as-needed.patch;striplevel=2 \ 14 file://ld-as-needed.patch;striplevel=2 \
14" 15"
15 16
@@ -22,6 +23,6 @@ EXTRA_OEMAKE = ""
22 23
23do_install() { 24do_install() {
24 install -d ${D}${bindir} ${D}${mandir}/man8 25 install -d ${D}${bindir} ${D}${mandir}/man8
25 install -m 0755 ptpd ${D}${bindir} 26 install -m 0755 ptpd2 ${D}${bindir}
26 install -m 0644 ptpd2.8 ${D}${mandir}/man8 27 install -m 0644 ptpd2.8 ${D}${mandir}/man8
27} 28}