Skip to content
Snippets Groups Projects
Commit 567aed9b authored by Volodymyr Yurchenko's avatar Volodymyr Yurchenko
Browse files

Fix linking cta binaries in buildtreerunner

parent 65ef7e2e
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ echo "Mounting logs volume ${PV_PATH} in /var/log"
mount --bind ${PV_PATH} /var/log
# all core dumps will go there as all the pods AND kubelet are sharing the same kernel.core_pattern
mkdir /var/log/tmp
mkdir -p /var/log/tmp
chmod 1777 /var/log/tmp
echo '/var/log/tmp/%h-%t-%e-%p-%s.core' > /proc/sys/kernel/core_pattern
......
......@@ -20,7 +20,7 @@
echo "Creating symlinks for CTA binaries."
ln -s -v -t /usr/bin `find ${BUILDTREE_BASE}/${CTA_BUILDTREE_SUBDIR} -type f -executable | egrep -v '\.so(\.|$)' | egrep -v '\.sh$' | grep -v RPM/BUILD | grep -v CMake | grep -v CPack`
find ${BUILDTREE_BASE}/${CTA_BUILDTREE_SUBDIR} -type f -executable | egrep -v '\.so(\.|$)' | egrep -v '\.sh$' | grep -v CMake | grep -v CPack | xargs -itoto ln -s -v -t /usr/bin toto
echo Creating symlinks for CTA libraries.
find ${BUILDTREE_BASE}/${CTA_BUILDTREE_SUBDIR} | grep '.so$' | xargs -itoto ln -s -v -t /usr/lib64 toto
echo Creating symlink for frontend configuration file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment