commit: 29d2c20f0f95618e9e14d91057ccb7be278d6050 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org> AuthorDate: Sat Apr 3 12:53:51 2021 +0000 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org> CommitDate: Mon Apr 5 09:52:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29d2c20f
eclass/ros-catkin.eclass: fix EROOT misuse Closes: https://bugs.gentoo.org/778809 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org> eclass/ros-catkin.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/ros-catkin.eclass b/eclass/ros-catkin.eclass index b6f10ce6202..1bd1be4a478 100644 --- a/eclass/ros-catkin.eclass +++ b/eclass/ros-catkin.eclass @@ -177,7 +177,7 @@ ros-catkin_src_configure() { local mycmakeargs=( "-DCATKIN_ENABLE_TESTING=$(usex test)" "-DCATKIN_BUILD_BINARY_PACKAGE=ON" - "-DCATKIN_PREFIX_PATH=${SYSROOT:-${EROOT}}/usr" + "-DCATKIN_PREFIX_PATH=${SYSROOT:-${EPREFIX}}/usr" "${mycatkincmakeargs[@]}" )
