From ff76624c4407c6132cd4068e6ce065a7b429351f Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 4 Aug 2024 15:46:04 +0100 Subject: [PATCH] Always installed --- src/libcamera/source_paths.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/libcamera/source_paths.cpp b/src/libcamera/source_paths.cpp index 1af5386a..3fc7d044 100644 --- a/src/libcamera/source_paths.cpp +++ b/src/libcamera/source_paths.cpp @@ -39,15 +39,6 @@ namespace { */ bool isLibcameraInstalled() { - /* - * DT_RUNPATH (DT_RPATH when the linker uses old dtags) is removed on - * install. - */ - for (const ElfW(Dyn) *dyn = _DYNAMIC; dyn->d_tag != DT_NULL; ++dyn) { - if (dyn->d_tag == DT_RUNPATH || dyn->d_tag == DT_RPATH) - return false; - } - return true; } -- 2.44.1