From 9b0067e062c6567f3958bc6c1907b9bc01119e6b Mon Sep 17 00:00:00 2001 From: Ken Zangelin Date: Wed, 11 Sep 2024 10:28:06 +0200 Subject: [PATCH] A few 'cd's were missing --- docker/build-ubi/04.install-fastdds.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/build-ubi/04.install-fastdds.sh b/docker/build-ubi/04.install-fastdds.sh index 9e253ad24e..afaa8c2fe2 100755 --- a/docker/build-ubi/04.install-fastdds.sh +++ b/docker/build-ubi/04.install-fastdds.sh @@ -63,6 +63,7 @@ git clone https://github.com/eProsima/Fast-DDS.git cd Fast-DDS git checkout master mkdir build +cd build ## Prevent glibc bug: https://stackoverflow.com/questions/30680550/c-gettid-was-not-declared-in-this-scope # Seems to be fixed already manually by eProsima @@ -82,6 +83,7 @@ git clone https://github.com/eProsima/dev-utils.git cd dev-utils git checkout main mkdir build +cd build cmake .. cmake --build . --target install @@ -97,17 +99,20 @@ git clone https://github.com/eProsima/ddspipe_yaml.git cd ddspipe_core git checkout main mkdir build +cd build cmake .. cmake --build . --target install cd ddspipe_participants git checkout main mkdir build +cd build cmake .. cmake --build . --target install cd ddspipe_yaml git checkout main mkdir build +cd build cmake .. cmake --build . --target install