mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] ptxd_install_shared: Fix missing links when ${src} is a symlink itself
@ 2013-03-21 14:58 Bernhard Walle
  2013-03-21 15:08 ` Bernhard Walle
  0 siblings, 1 reply; 7+ messages in thread
From: Bernhard Walle @ 2013-03-21 14:58 UTC (permalink / raw)
  To: ptxdist

When "${src}" is a symlink to some other directory, then not all
symbolic links to the library are installed.

In my case I'm using a ct-ng-based toolchain where
${TOOLCHAIN_BASE}/arm-unknown-linux-gnueabi/lib/ is a symbolic link to
sysroot/lib/. As a result, install_copy_toolchain_lib with libstdc++.so
doesn't install the libstdc++.so.6 symbolic link and so C++ programs
don't start.

Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
---
 scripts/lib/ptxd_make_xpkg_pkg.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/lib/ptxd_make_xpkg_pkg.sh b/scripts/lib/ptxd_make_xpkg_pkg.sh
index 476ad58..03356b3 100644
--- a/scripts/lib/ptxd_make_xpkg_pkg.sh
+++ b/scripts/lib/ptxd_make_xpkg_pkg.sh
@@ -694,6 +694,7 @@ ptxd_install_shared() {
 
     ptxd_install_file "${src}" "${dst}/${filename}" "${usr}" "${grp}" "${mod}" &&
 
+    src="$(readlink -f "${src}")"
     find "$(dirname "${src}")" -maxdepth 1 -type l | while read file; do
 	if [ "$(basename "$(readlink -f "${file}")")" = "${filename}" ]; then
 	    local link="${dst}/$(basename "${file}")"
-- 
1.8.2


-- 
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2013-03-22  9:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-21 14:58 [ptxdist] [PATCH] ptxd_install_shared: Fix missing links when ${src} is a symlink itself Bernhard Walle
2013-03-21 15:08 ` Bernhard Walle
2013-03-21 15:47   ` Michael Olbrich
2013-03-21 16:21     ` Bernhard Walle
2013-03-21 17:25       ` Michael Olbrich
2013-03-21 18:34         ` Bernhard Walle
2013-03-22  9:43           ` Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox