All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error
@ 2013-12-04 10:33 jackie.huang
  2013-12-04 10:33 ` [meta-networking][PATCH 2/2] inetutils: add --with-libreadline-prefix to avoid host contamination jackie.huang
  2013-12-04 10:39 ` [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error Koen Kooi
  0 siblings, 2 replies; 6+ messages in thread
From: jackie.huang @ 2013-12-04 10:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: li.wang

From: Jackie Huang <jackie.huang@windriver.com>

Correct the usage of alternative link and target:
ALTERNATIVE_LINK_NAME[name] = "target"
ALTERNATIVE_TARGET[name] = "target"

Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../inetutils/inetutils_1.9.1.bb                     | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
index e371ae5..59a22aa 100644
--- a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
+++ b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
@@ -92,22 +92,22 @@ ALTERNATIVE_${PN}-ftp = "ftp"
 ALTERNATIVE_${PN}-ftpd = "ftpd"
 ALTERNATIVE_${PN}-tftp = "tftp"
 ALTERNATIVE_${PN}-tftpd = "tftpd"
-ALTERNATIVE_LINK_NAME_${PN}-tftpd = "${bindir}/tftpd"
-ALTERNATIVE_TARGET_${PN}-tftpd  = "${sbindir}/in.tftpd"
+ALTERNATIVE_LINK_NAME[tftpd] = "${bindir}/tftpd"
+ALTERNATIVE_TARGET[tftpd]  = "${sbindir}/in.tftpd"
 
 ALTERNATIVE_${PN}-telnet = "telnet"
 ALTERNATIVE_${PN}-telnetd = "telnetd"
-ALTERNATIVE_LINK_NAME_${PN}-telnetd = "${bindir}/telnetd"
-ALTERNATIVE_TARGET_${PN}-telnetd = "${sbindir}/in.telnetd"
+ALTERNATIVE_LINK_NAME[telnetd] = "${bindir}/telnetd"
+ALTERNATIVE_TARGET[telnetd] = "${sbindir}/in.telnetd"
 
 ALTERNATIVE_${PN}-rsh = "rcp rexec rlogin rsh"
 ALTERNATIVE_${PN}-rshd = "rshd rexecd rlogind"
-ALTERNATIVE_LINK_NAME_${PN}-rshd = "${bindir}/rshd"
-ALTERNATIVE_TARGET_${PN}-rshd = "${sbindir}/in.rshd"
-ALTERNATIVE_LINK_NAME_${PN}-rexecd = "${bindir}/rexecd"
-ALTERNATIVE_TARGET_${PN}-rexecd = "${sbindir}/in.rexecd"
-ALTERNATIVE_LINK_NAME_${PN}-rlogind = "${bindir}/rlogind"
-ALTERNATIVE_TARGET_${PN}-rlogind = "${sbindir}/in.rlogind"
+ALTERNATIVE_LINK_NAME[rshd] = "${bindir}/rshd"
+ALTERNATIVE_TARGET[rshd] = "${sbindir}/in.rshd"
+ALTERNATIVE_LINK_NAME[rexecd] = "${bindir}/rexecd"
+ALTERNATIVE_TARGET[rexecd] = "${sbindir}/in.rexecd"
+ALTERNATIVE_LINK_NAME[rlogind] = "${bindir}/rlogind"
+ALTERNATIVE_TARGET[rlogind] = "${sbindir}/in.rlogind"
 
 ALTERNATIVE_${PN}-inetd= "inetd"
 ALTERNATIVE_${PN}-traceroute = "traceroute"
-- 
1.8.3



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-12-05  2:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-04 10:33 [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error jackie.huang
2013-12-04 10:33 ` [meta-networking][PATCH 2/2] inetutils: add --with-libreadline-prefix to avoid host contamination jackie.huang
2013-12-04 10:39 ` [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error Koen Kooi
2013-12-04 13:49   ` Joe MacDonald
2013-12-04 21:10     ` Joe MacDonald
2013-12-05  2:06     ` jhuang0

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.