diff options
| author | Khem Raj <raj.khem@gmail.com> | 2022-04-23 07:47:52 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-04-23 20:12:14 -0700 |
| commit | e059bf5da05dd895ac5fde665f283022ad5c59d2 (patch) | |
| tree | fbd327a07a92dcbbaa00a111776aa36d80dabb08 | |
| parent | 224d8a8cbeef0c5ccdf03e9f6660203af7abead6 (diff) | |
| download | meta-openembedded-e059bf5da05dd895ac5fde665f283022ad5c59d2.tar.gz | |
tcsh: Do not install symlinks into /bin with usrmerge
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-shells/tcsh/tcsh_6.22.04.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-shells/tcsh/tcsh_6.22.04.bb b/meta-oe/recipes-shells/tcsh/tcsh_6.22.04.bb index c4da5cd835..f7282bf1fd 100644 --- a/meta-oe/recipes-shells/tcsh/tcsh_6.22.04.bb +++ b/meta-oe/recipes-shells/tcsh/tcsh_6.22.04.bb | |||
| @@ -27,8 +27,10 @@ do_install:append () { | |||
| 27 | oe_runmake install.man DESTDIR=${D} | 27 | oe_runmake install.man DESTDIR=${D} |
| 28 | 28 | ||
| 29 | install -d ${D}${base_bindir} | 29 | install -d ${D}${base_bindir} |
| 30 | ln -s /usr/bin/tcsh ${D}${base_bindir}/tcsh | 30 | if ! ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','true','false',d)}; then |
| 31 | ln -s /usr/bin/tcsh ${D}${base_bindir}/csh | 31 | ln -s /usr/bin/tcsh ${D}${base_bindir}/tcsh |
| 32 | ln -s /usr/bin/tcsh ${D}${base_bindir}/csh | ||
| 33 | fi | ||
| 32 | install -d ${D}${sysconfdir}/csh/login.d | 34 | install -d ${D}${sysconfdir}/csh/login.d |
| 33 | install -m 0644 ${S}/csh.cshrc ${S}/csh.login ${S}/csh.logout ${S}/complete.tcsh ${D}${sysconfdir} | 35 | install -m 0644 ${S}/csh.cshrc ${S}/csh.login ${S}/csh.logout ${S}/complete.tcsh ${D}${sysconfdir} |
| 34 | install -D -m 0644 ${S}/csh-mode.el ${D}${datadir}/emacs/site-lisp/csh-mode.el | 36 | install -D -m 0644 ${S}/csh-mode.el ${D}${datadir}/emacs/site-lisp/csh-mode.el |
