diff options
author | Li Zhou <li.zhou@windriver.com> | 2017-05-25 16:27:13 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2017-06-28 10:27:03 -0400 |
commit | 71a9e0af08ed2c6880274acd3008c570cc04d9a2 (patch) | |
tree | 73e50cdc79eba4a1d99d06a3e1247729d9f991bb /meta-networking | |
parent | e86c3fd9c575da66315c39afad0c6ce84fd8a4f8 (diff) | |
download | meta-openembedded-contrib-71a9e0af08ed2c6880274acd3008c570cc04d9a2.tar.gz |
traceroute: Move manual pages from mandir to man8 under it
Traceroute's manual pages are installed in /usr/share/man,
which should be placed in /usr/share/man/man8.
Correct this.
Signed-off-by: Li Zhou <li.zhou@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-support/traceroute/traceroute_2.1.0.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-networking/recipes-support/traceroute/traceroute_2.1.0.bb b/meta-networking/recipes-support/traceroute/traceroute_2.1.0.bb index 48a0c12795b..8f17d3fdbeb 100644 --- a/meta-networking/recipes-support/traceroute/traceroute_2.1.0.bb +++ b/meta-networking/recipes-support/traceroute/traceroute_2.1.0.bb @@ -33,10 +33,10 @@ do_install() { install -m755 wrappers/tcptraceroute ${D}${bindir} - install -d ${D}${mandir} - install -p -m644 ${BPN}/${BPN}.8 ${D}${mandir} - ln -s ${BPN}.8 ${D}${mandir}/${BPN}6.8 - ln -s ${BPN}.8 ${D}${mandir}/tcptraceroute.8 + install -d ${D}${mandir}/man8 + install -p -m644 ${BPN}/${BPN}.8 ${D}${mandir}/man8 + ln -s ${BPN}.8 ${D}${mandir}/man8/${BPN}6.8 + ln -s ${BPN}.8 ${D}${mandir}/man8/tcptraceroute.8 } |